diff --git a/assets.json b/assets.json index ea3c8bc..dc487aa 100644 --- a/assets.json +++ b/assets.json @@ -1,3 +1,3 @@ { - "version": 1705435510121 + "version": 1705517859211 } \ No newline at end of file diff --git a/assets/styles/main.scss b/assets/styles/main.scss index b5df4d4..b2b688c 100644 --- a/assets/styles/main.scss +++ b/assets/styles/main.scss @@ -3,6 +3,10 @@ // ========================================================================== @use "sass:math"; +@import "node_modules/tailwindcss/base"; +@import "node_modules/tailwindcss/components"; +@import "node_modules/tailwindcss/utilities"; + // ========================================================================== // Tools // ========================================================================== @@ -66,10 +70,10 @@ // ========================================================================== @import "utilities/ratio"; -@import "utilities/grid-column"; +// @import "utilities/grid-column"; // @import "utilities/widths"; // @import "utilities/align"; // @import "utilities/helpers"; // @import "utilities/states"; -@import "utilities/spacing"; +// @import "utilities/spacing"; // @import "utilities/print"; diff --git a/build/helpers/postcss.js b/build/helpers/postcss.js index d7b7b64..a6f8136 100644 --- a/build/helpers/postcss.js +++ b/build/helpers/postcss.js @@ -46,7 +46,7 @@ * @type {Postcss|undefined} postcss - The discovered PostCSS function. * @type {AcceptedPlugin|undefined} autoprefixer - The discovered Autoprefixer function. */ -let postcss, autoprefixer; +let postcss, autoprefixer, tailwindcss; try { postcss = await import('postcss'); @@ -54,6 +54,9 @@ try { autoprefixer = await import('autoprefixer'); autoprefixer = autoprefixer.default; + + tailwindcss = await import('tailwindcss'); + tailwindcss = tailwindcss.default; } catch (err) { // do nothing } @@ -67,6 +70,7 @@ const supportsPostCSS = (typeof postcss === 'function'); * @type {PluginList} A list of supported plugins. */ const pluginsList = [ + tailwindcss, autoprefixer, ]; @@ -74,6 +78,7 @@ const pluginsList = [ * @type {PluginMap} A map of supported plugins. */ const pluginsMap = { + 'tailwindcss': tailwindcss, 'autoprefixer': autoprefixer, }; diff --git a/build/tasks/styles.js b/build/tasks/styles.js index a70d94e..71bea4e 100644 --- a/build/tasks/styles.js +++ b/build/tasks/styles.js @@ -49,6 +49,11 @@ export const defaultPostCSSOptions = { sourcesContent: true, }, }, + plugins: { + tailwindcss: { + config: resolve('../../tailwind.config.js'), + }, + } }; export const developmentPostCSSOptions = Object.assign({}, defaultPostCSSOptions); export const productionPostCSSOptions = Object.assign({}, defaultPostCSSOptions); diff --git a/package-lock.json b/package-lock.json index df163e4..a6b4b26 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,9 +22,11 @@ "kleur": "^4.1.5", "node-notifier": "^10.0.1", "postcss": "^8.4.21", + "postcss-import": "^16.0.0", "purgecss": "^5.0.0", "sass": "^1.69.5", "svg-mixer": "~2.3.14", + "tailwindcss": "^3.4.1", "tiny-glob": "^0.2.9" }, "engines": { @@ -32,6 +34,18 @@ "npm": ">=8.0" } }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@esbuild/android-arm": { "version": "0.17.6", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.6.tgz", @@ -384,6 +398,195 @@ "node": ">=12" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz", + "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@socket.io/component-emitter": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", @@ -451,6 +654,15 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -466,6 +678,12 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, "node_modules/anymatch": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", @@ -476,6 +694,12 @@ "normalize-path": "^2.1.1" } }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, "node_modules/arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", @@ -967,6 +1191,15 @@ "node": ">=6" } }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, "node_modules/caniuse-lite": { "version": "1.0.30001574", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001574.tgz", @@ -1331,6 +1564,20 @@ "node": ">= 0.10" } }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", @@ -1457,6 +1704,18 @@ "node": ">= 0.8.0" } }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, "node_modules/dom-serializer": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", @@ -1492,6 +1751,12 @@ "domelementtype": "1" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, "node_modules/easy-extender": { "version": "2.3.4", "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz", @@ -1904,12 +2169,95 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/fast-glob/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/fast-glob/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "node_modules/fastq": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, "node_modules/fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -1997,6 +2345,22 @@ "node": ">=0.10.0" } }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fraction.js": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", @@ -2062,6 +2426,15 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -2194,6 +2567,18 @@ "node": ">=0.10.0" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", @@ -2364,6 +2749,18 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-data-descriptor": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", @@ -2567,6 +2964,33 @@ "node": ">=0.10.0" } }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, "node_modules/js-beautify": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.0.tgz", @@ -2618,12 +3042,27 @@ "node": ">=6" } }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/limiter": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==", "dev": true }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -2718,6 +3157,15 @@ "node": ">=4" } }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, "node_modules/micromatch": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", @@ -2784,6 +3232,15 @@ "node": "*" } }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -2843,6 +3300,17 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "node_modules/nanoid": { "version": "3.3.7", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", @@ -3048,6 +3516,15 @@ "node": ">=0.10.0" } }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, "node_modules/object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", @@ -3177,6 +3654,46 @@ "node": ">=0.10.0" } }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "dependencies": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" + } + }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -3195,6 +3712,24 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, "node_modules/portscanner": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", @@ -3258,6 +3793,105 @@ "node": ">=0.12.9" } }, + "node_modules/postcss-import": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.0.0.tgz", + "integrity": "sha512-e77lhVvrD1I2y7dYmBv0k9ULTdArgEYZt97T4w6sFIU5uxIHvDFQlKgUUyY7v7Barj0Yf/zm5A4OquZN7jKm5Q==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, "node_modules/postcss-prefix-selector": { "version": "1.16.0", "resolved": "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz", @@ -3268,9 +3902,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.9", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", - "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -3498,6 +4132,26 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", @@ -3522,6 +4176,15 @@ "node": ">= 0.8" } }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, "node_modules/readable-stream": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", @@ -3607,6 +4270,23 @@ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", @@ -3636,6 +4316,39 @@ "node": ">=0.12" } }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, "node_modules/rx": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", @@ -3869,6 +4582,27 @@ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/shellwords": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", @@ -3881,6 +4615,18 @@ "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", "dev": true }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -4275,6 +5021,21 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -4287,15 +5048,96 @@ "node": ">=8" } }, - "node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, "engines": { "node": ">=8" } }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -4308,6 +5150,18 @@ "node": ">=8" } }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/svg-mixer": { "version": "2.3.14", "resolved": "https://registry.npmjs.org/svg-mixer/-/svg-mixer-2.3.14.tgz", @@ -4494,6 +5348,160 @@ "node": ">=0.8.0" } }, + "node_modules/tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/tailwindcss/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/tailwindcss/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/tailwindcss/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tailwindcss/node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/tailwindcss/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/tiny-glob": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", @@ -4571,6 +5579,12 @@ "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=", "dev": true }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, "node_modules/ua-parser-js": { "version": "1.0.33", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz", @@ -4808,6 +5822,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -4859,6 +5891,15 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, "node_modules/yargs": { "version": "15.4.1", "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", @@ -4902,6 +5943,12 @@ } }, "dependencies": { + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true + }, "@esbuild/android-arm": { "version": "0.17.6", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.6.tgz", @@ -5056,6 +6103,143 @@ "dev": true, "optional": true }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz", + "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, "@socket.io/component-emitter": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz", @@ -5116,6 +6300,12 @@ "uri-js": "^4.2.2" } }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -5125,6 +6315,12 @@ "color-convert": "^2.0.1" } }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, "anymatch": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", @@ -5135,6 +6331,12 @@ "normalize-path": "^2.1.1" } }, + "arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, "arr-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", @@ -5504,6 +6706,12 @@ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true + }, "caniuse-lite": { "version": "1.0.30001574", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001574.tgz", @@ -5779,6 +6987,17 @@ "vary": "^1" } }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, "cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", @@ -5871,6 +7090,18 @@ "integrity": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==", "dev": true }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, "dom-serializer": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", @@ -5906,6 +7137,12 @@ "domelementtype": "1" } }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, "easy-extender": { "version": "2.3.4", "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz", @@ -6239,12 +7476,79 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, + "fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, + "fastq": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -6305,6 +7609,16 @@ "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", "dev": true }, + "foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + } + }, "fraction.js": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", @@ -6350,6 +7664,12 @@ "dev": true, "optional": true }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -6457,6 +7777,15 @@ } } }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", @@ -6600,6 +7929,15 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, "is-data-descriptor": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", @@ -6752,6 +8090,22 @@ "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true }, + "jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, + "jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true + }, "js-beautify": { "version": "1.13.0", "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.0.tgz", @@ -6792,12 +8146,24 @@ "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", "dev": true }, + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true + }, "limiter": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==", "dev": true }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -6879,6 +8245,12 @@ "is-plain-obj": "^1.1" } }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, "micromatch": { "version": "3.1.10", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", @@ -6930,6 +8302,12 @@ "brace-expansion": "^1.1.7" } }, + "minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -6979,6 +8357,17 @@ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "nanoid": { "version": "3.3.7", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", @@ -7131,6 +8520,12 @@ } } }, + "object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true + }, "object-visit": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", @@ -7224,6 +8619,36 @@ "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", "dev": true }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, + "requires": { + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true + } + } + }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -7236,6 +8661,18 @@ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true + }, "portscanner": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", @@ -7272,6 +8709,53 @@ "urijs": "^1.18.12" } }, + "postcss-import": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-16.0.0.tgz", + "integrity": "sha512-e77lhVvrD1I2y7dYmBv0k9ULTdArgEYZt97T4w6sFIU5uxIHvDFQlKgUUyY7v7Barj0Yf/zm5A4OquZN7jKm5Q==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "dev": true, + "requires": { + "camelcase-css": "^2.0.1" + } + }, + "postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "dev": true, + "requires": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "dependencies": { + "lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true + } + } + }, + "postcss-nested": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.11" + } + }, "postcss-prefix-selector": { "version": "1.16.0", "resolved": "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.16.0.tgz", @@ -7280,9 +8764,9 @@ "requires": {} }, "postcss-selector-parser": { - "version": "6.0.9", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", - "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "dev": true, "requires": { "cssesc": "^3.0.0", @@ -7472,6 +8956,12 @@ "strict-uri-encode": "^2.0.0" } }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", @@ -7490,6 +8980,15 @@ "unpipe": "1.0.0" } }, + "read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "requires": { + "pify": "^2.3.0" + } + }, "readable-stream": { "version": "2.3.6", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", @@ -7560,6 +9059,17 @@ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, "resolve-url": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", @@ -7582,6 +9092,21 @@ "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, "rx": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", @@ -7787,6 +9312,21 @@ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, "shellwords": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", @@ -7799,6 +9339,12 @@ "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", "dev": true }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, "snapdragon": { "version": "0.8.2", "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", @@ -8111,6 +9657,17 @@ "strip-ansi": "^6.0.1" } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -8118,13 +9675,68 @@ "dev": true, "requires": { "ansi-regex": "^5.0.1" + } + }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" }, "dependencies": { - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true + }, + "glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + } + }, + "minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } } } }, @@ -8137,6 +9749,12 @@ "has-flag": "^4.0.0" } }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, "svg-mixer": { "version": "2.3.14", "resolved": "https://registry.npmjs.org/svg-mixer/-/svg-mixer-2.3.14.tgz", @@ -8298,6 +9916,125 @@ "resolved": "https://registry.npmjs.org/svg4everybody/-/svg4everybody-2.1.9.tgz", "integrity": "sha1-W9n23vwTOFmgRGRtR0P6vCjbfi0=" }, + "tailwindcss": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.1.tgz", + "integrity": "sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==", + "dev": true, + "requires": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.0", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.19.1", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dev": true, + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, "tiny-glob": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", @@ -8362,6 +10099,12 @@ "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=", "dev": true }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, "ua-parser-js": { "version": "1.0.33", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz", @@ -8528,6 +10271,17 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -8559,6 +10313,12 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, + "yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true + }, "yargs": { "version": "15.4.1", "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", diff --git a/package.json b/package.json index 2d7485f..5c38302 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "npm": ">=8.0" }, "scripts": { - "start": "node --experimental-json-modules --no-warnings build/watch.js", + "dev": "node --experimental-json-modules --no-warnings build/watch.js", "build": "node --experimental-json-modules --no-warnings build/build.js" }, "dependencies": { @@ -28,9 +28,11 @@ "kleur": "^4.1.5", "node-notifier": "^10.0.1", "postcss": "^8.4.21", + "postcss-import": "^16.0.0", "purgecss": "^5.0.0", "sass": "^1.69.5", "svg-mixer": "~2.3.14", + "tailwindcss": "^3.4.1", "tiny-glob": "^0.2.9" }, "overrides": { diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..e1f96d4 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,23 @@ +/** @type {import('tailwindcss').Config} */ +export default { + prefix: 'u-', + content: [ + './www/**/*.html', + './assets/scripts/**/*' + ], + theme: { + screens: { + 'tiny': '500px', + 'small': '700px', + 'medium': '1000px', + 'large': '1200px', + 'big': '1400px', + 'huge': '1600px', + 'enormous': '1800px', + 'gigantic': '2000px', + 'colossal': '2400px' + } + }, + plugins: [], +} + diff --git a/www/assets/scripts/app.js b/www/assets/scripts/app.js index c1b7c79..77c932d 100644 --- a/www/assets/scripts/app.js +++ b/www/assets/scripts/app.js @@ -1,7 +1,2232 @@ -(()=>{var Gt=Object.create;var D=Object.defineProperty;var Yt=Object.getOwnPropertyDescriptor;var Xt=Object.getOwnPropertyNames,P=Object.getOwnPropertySymbols,Zt=Object.getPrototypeOf,Z=Object.prototype.hasOwnProperty,ut=Object.prototype.propertyIsEnumerable;var ct=(s,e,t)=>e in s?D(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,dt=(s,e)=>{for(var t in e||(e={}))Z.call(e,t)&&ct(s,t,e[t]);if(P)for(var t of P(e))ut.call(e,t)&&ct(s,t,e[t]);return s};var ft=(s,e)=>{var t={};for(var i in s)Z.call(s,i)&&e.indexOf(i)<0&&(t[i]=s[i]);if(s!=null&&P)for(var i of P(s))e.indexOf(i)<0&&ut.call(s,i)&&(t[i]=s[i]);return t};var Kt=(s,e)=>()=>(s&&(e=s(s=0)),e);var Jt=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),mt=(s,e)=>{for(var t in e)D(s,t,{get:e[t],enumerable:!0})},Qt=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Xt(e))!Z.call(s,n)&&n!==t&&D(s,n,{get:()=>e[n],enumerable:!(i=Yt(e,n))||i.enumerable});return s};var te=(s,e,t)=>(t=s!=null?Gt(Zt(s)):{},Qt(e||!s||!s.__esModule?D(t,"default",{value:s,enumerable:!0}):t,s));var w=(s,e,t)=>new Promise((i,n)=>{var r=a=>{try{l(t.next(a))}catch(h){n(h)}},o=a=>{try{l(t.throw(a))}catch(h){n(h)}},l=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,o);l((t=t.apply(s,e)).next())});var xt=Jt((Ft,Y)=>{(function(s,e){typeof define=="function"&&define.amd?define([],function(){return s.svg4everybody=e()}):typeof Y=="object"&&Y.exports?Y.exports=e():s.svg4everybody=e()})(Ft,function(){function s(n,r,o){if(o){var l=document.createDocumentFragment(),a=!r.hasAttribute("viewBox")&&o.getAttribute("viewBox");a&&r.setAttribute("viewBox",a);for(var h=o.cloneNode(!0);h.childNodes.length;)l.appendChild(h.firstChild);n.appendChild(l)}}function e(n){n.onreadystatechange=function(){if(n.readyState===4){var r=n._cachedDocument;r||(r=n._cachedDocument=document.implementation.createHTMLDocument(""),r.body.innerHTML=n.responseText,n._cachedTarget={}),n._embeds.splice(0).map(function(o){var l=n._cachedTarget[o.id];l||(l=n._cachedTarget[o.id]=r.getElementById(o.id)),s(o.parent,o.svg,l)})}},n.onreadystatechange()}function t(n){function r(){for(var _=0;_0)&&p(r,67)}var o,l=Object(n),a=/\bTrident\/[567]\b|\bMSIE (?:9|10)\.0\b/,h=/\bAppleWebKit\/(\d+)\b/,c=/\bEdge\/12\.(\d+)\b/,u=/\bEdge\/.(\d+)\b/,d=window.top!==window.self;o="polyfill"in l?l.polyfill:a.test(navigator.userAgent)||(navigator.userAgent.match(c)||[])[1]<10547||(navigator.userAgent.match(h)||[])[1]<537||u.test(navigator.userAgent)&&d;var f={},p=window.requestAnimationFrame||setTimeout,y=document.getElementsByTagName("use"),L=0;o&&r()}function i(n){for(var r=n;r.nodeName.toLowerCase()!=="svg"&&(r=r.parentNode););return r}return t})});var Ut={};mt(Ut,{gridHelper:()=>Ae});function Ae({gutterCssVar:s=Oe,marginCssVar:e=Ie,rgbaColor:t=Te}={}){let i=document.createElement("div");document.body.append(i),$t(i,t),Me(i,s,e),Re(i,t)}function Me(s,e,t){let i=s.style;i.zIndex="10000",i.position="fixed",i.top="0",i.left="0",i.display="flex",i.width="100%",i.height="100%",i.columnGap=`var(${e}, 0)`,i.paddingLeft=`var(${t}, 0)`,i.paddingRight=`var(${t}, 0)`,i.pointerEvents="none",i.visibility="hidden"}function $t(s,e){s.innerHTML="";let t=Number(window.getComputedStyle(s).getPropertyValue("--grid-columns")),i;for(var n=0;n{n.key=="Control"?t=!0:t&&n.key=="g"&&(i?s.style.visibility="hidden":s.style.visibility="visible",i=!i)}),document.addEventListener("keyup",n=>{n.key=="Control"&&(t=!1)})}var Oe,Ie,Te,Nt=Kt(()=>{Oe="--grid-gutter",Ie="--grid-margin",Te="rgba(255, 0, 0, .1)"});function x(s){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?x=function(e){return typeof e}:x=function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},x(s)}function gt(s,e){if(!(s instanceof e))throw new TypeError("Cannot call a class as a function")}function pt(s,e){for(var t=0;ts.length)&&(e=s.length);for(var t=0,i=new Array(e);tN,Load:()=>j,Scroll:()=>G});var J="production",wt=window.matchMedia("(any-pointer:coarse)").matches,k=Object.freeze({NAME:J,IS_PROD:J==="production",IS_DEV:J==="development",IS_MOBILE:wt,IS_DESKTOP:!wt}),S=Object.freeze({LOADING:"is-loading",LOADED:"is-loaded",READY:"is-ready",FONTS_LOADED:"fonts-loaded",LAZY_CONTAINER:"c-lazy",LAZY_LOADED:"-lazy-loaded"}),St=Object.freeze({RESIZE_END:"loco.resizeEnd"}),$=Object.freeze({EAGER:[{family:"Source Sans",style:"normal",weight:400},{family:"Source Sans",style:"normal",weight:700}]});var _t="fonts"in document;function he(s,e){for(let[t,i]of Object.entries(e))switch(t){case"family":{if(U(s[t])!==i)return!1;break}case"weight":{if(s[t]!=i)return!1;break}default:{if(s[t]!==i)return!1;break}}return!0}function ce(s,e){let t=U(s.family);return U(t)===e||e.endsWith(U(t))&&(e.match(s.weight)||e.match(s.style)),!0}function ue(s){let e=[];for(let t of document.fonts)he(t,s)&&e.push(t);return e}function de(s){let e=[];for(let t of document.fonts)ce(t,s)&&e.push(t);return e}function Ot(s){Array.isArray(s)||(s=[s]);let e=new Set;return s.forEach(t=>{if(t)switch(typeof t){case"string":e.add(...de(t));return;case"object":e.add(...ue(t));return}throw new TypeError("Expected font query to be font shorthand or font reference")}),[...e]}function It(s,e=!1){return w(this,null,function*(){var t;if(((t=s.size)!=null?t:s.length)===0)throw new TypeError("Expected at least one font");return yield fe([...s],e)})}function Ct(s){return w(this,null,function*(){return yield(s.status==="unloaded"?s.load():s.loaded).then(e=>e,e=>s)})}function fe(s,e=!1){return w(this,null,function*(){e&&console.group("[loadFonts:API]",s.length,"/",document.fonts.size);let t=[];for(let i of s)i instanceof FontFace?(document.fonts.has(i)||document.fonts.add(i),t.push(Ct(i))):t.push(...Ot(i).map(n=>Ct(n)));return e&&console.groupEnd(),yield Promise.all(t)})}function U(s){return s.replace(/['"]+/g,"")}function Tt(s){return w(this,null,function*(){let e=Ot(s);return yield Promise.all(e.map(t=>t.loaded))})}var N=class extends A{constructor(s){super(s)}init(){Tt($.EAGER).then(s=>this.onFontsLoaded(s))}onFontsLoaded(s){console.log("Example: Eager Fonts Loaded!",s)}};function me(s,e){if(!(s instanceof e))throw new TypeError("Cannot call a class as a function")}function At(s,e){for(var t=0;ts.length)&&(e=s.length);for(var t=0,i=new Array(e);t-1||(this.reset(),this.getStateOptions())}},{key:"reset",value:function(){this.isLoading&&(this.controller.abort(),this.isLoading=!1,this.controller=new AbortController),window.clearTimeout(this.enterTimeout),this.isInserted&&this.removeContainer(),this.classContainer=this.html,Object.assign(this,this.defaults,this.options)}},{key:"getClickOptions",value:function(t){this.transition=t.getAttribute("data-"+this.name),this.isUrl=t.getAttribute("data-"+this.name+"-url");var i=t.getAttribute("href"),n=t.getAttribute("target");if(n=="_blank"){window.open(i,"_blank");return}if(this.transition=="false"){window.location=i;return}this.setOptions(i,!0)}},{key:"getStateOptions",value:function(){this.transitionsHistory?this.transition=history.state:this.transition=!1;var t=window.location.href;this.setOptions(t)}},{key:"goTo",value:function(t,i,n){this.reset(),this.transition=i,this.isUrl=n,this.setOptions(t,!0)}},{key:"setOptions",value:function(t,i){var n="["+this.container+"]",r;this.transition&&this.transition!="true"&&(this.transitionContainer="["+this.container+'="'+this.transition+'"]',this.loadingClass=this.transitions[this.transition].loadingClass||this.loadingClass,this.loadedClass=this.transitions[this.transition].loadedClass||this.loadedClass,this.readyClass=this.transitions[this.transition].readyClass||this.readyClass,this.transitionsPrefix=this.transitions[this.transition].transitionsPrefix||this.transitionsPrefix,this.enterDelay=this.transitions[this.transition].enterDelay||this.enterDelay,this.exitDelay=this.transitions[this.transition].exitDelay||this.exitDelay,this.loadedDelay=this.transitions[this.transition].loadedDelay||this.loadedDelay,r=document.querySelector(this.transitionContainer)),r?(n=this.transitionContainer,this.oldContainer=r,this.classContainer=this.oldContainer.parentNode,this.subContainer||history.replaceState(this.transition,null,this.href),this.subContainer=!0):(this.oldContainer=document.querySelector(n),this.subContainer&&history.replaceState(this.prevTransition,null,this.href),this.subContainer=!1),this.href=t,this.parentContainer=this.oldContainer.parentNode,this.isUrl===""||this.isUrl!=null&&this.isUrl!="false"&&this.isUrl!=!1?history.pushState(this.transition,null,t):(this.oldContainer.classList.add("is-old"),this.setLoading(),this.startEnterDelay(),this.loadHref(t,n,i))}},{key:"setLoading",value:function(){this.classContainer.classList.remove(this.loadedClass,this.readyClass),this.classContainer.classList.add(this.loadingClass),this.classContainer.classList.remove(this.transitionsPrefix+this.prevTransition),this.transition&&this.classContainer.classList.add(this.transitionsPrefix+this.transition),this.subContainer||(this.prevTransition=this.transition);var t=new Event(this.namespace+"loading");window.dispatchEvent(t)}},{key:"startEnterDelay",value:function(){var t=this;this.enterTimeout=window.setTimeout(function(){t.isEntered=!0,t.isLoaded&&t.transitionContainers()},this.enterDelay)}},{key:"loadHref",value:function(t,i,n){var r=this;this.isLoading=!0;var o=this.controller.signal;fetch(t,{signal:o}).then(function(l){return l.text()}).then(function(l){n&&history.pushState(r.transition,null,t);var a=new DOMParser;r.data=a.parseFromString(l,"text/html"),r.newContainer=r.data.querySelector(i),r.newContainer.classList.add("is-new"),r.parentNewContainer=r.newContainer.parentNode,r.hideContainer(),r.parentContainer.insertBefore(r.newContainer,r.oldContainer),r.isInserted=!0,r.setSvgs(),r.isLoaded=!0,r.isEntered&&r.transitionContainers(),r.loadEls(r.newContainer),r.isLoading=!1}).catch(function(l){window.location=t})}},{key:"transitionContainers",value:function(){var t=this;this.setAttributes(),this.showContainer(),this.setLoaded(),setTimeout(function(){t.removeContainer(),t.setReady()},this.exitDelay)}},{key:"setSvgs",value:function(){if(this.isChrome){var t=this.newContainer.querySelectorAll("use");t.length&&t.forEach(function(i){var n=i.getAttribute("xlink:href");if(n)i.parentNode.innerHTML='';else{var r=i.getAttribute("href");r&&(i.parentNode.innerHTML='')}})}}},{key:"setAttributes",value:function(){var t=this,i=this.data.getElementsByTagName("title")[0],n=this.data.head.querySelector('meta[name="description"]'),r=document.head.querySelector('meta[name="description"]'),o,l;this.subContainer?(l=this.parentNewContainer,o=document.querySelector(this.transitionContainer).parentNode):(l=this.data.querySelector("html"),o=document.querySelector("html"));var a=Object.assign({},l.dataset);i&&(document.title=i.innerText),r&&n&&r.setAttribute("content",n.getAttribute("content")),a&&Object.entries(a).forEach(function(h){var c=ve(h,2),u=c[0],d=c[1];o.setAttribute("data-"+t.toDash(u),d)})}},{key:"toDash",value:function(t){return t.split(/(?=[A-Z])/).join("-").toLowerCase()}},{key:"hideContainer",value:function(){this.newContainer.style.visibility="hidden",this.newContainer.style.height=0,this.newContainer.style.overflow="hidden"}},{key:"showContainer",value:function(){this.newContainer.style.visibility="",this.newContainer.style.height="",this.newContainer.style.overflow=""}},{key:"loadEls",value:function(t){var i=this,n=[];this.loadAttributes.forEach(function(r){var o="data-"+i.name+"-"+r,l=t.querySelectorAll("["+o+"]");l.length&&l.forEach(function(a){var h=a.getAttribute(o);if(a.setAttribute(r,h),r=="src"||r=="srcset"){var c=new Promise(function(u){a.onload=function(){return u(a)}});n.push(c)}})}),Promise.all(n).then(function(r){var o=new Event(i.namespace+"images");window.dispatchEvent(o)})}},{key:"setLoaded",value:function(){var t=this;this.classContainer.classList.remove(this.loadingClass),setTimeout(function(){t.classContainer.classList.add(t.loadedClass)},this.loadedDelay);var i=new Event(this.namespace+"loaded");window.dispatchEvent(i)}},{key:"removeContainer",value:function(){this.parentContainer.removeChild(this.oldContainer),this.newContainer.classList.remove("is-new"),this.isInserted=!1}},{key:"setReady",value:function(){this.classContainer.classList.add(this.readyClass);var t=new Event(this.namespace+"ready");window.dispatchEvent(t)}},{key:"on",value:function(t,i){var n=this;window.addEventListener(this.namespace+t,function(){switch(t){case"loading":return i(n.transition,n.oldContainer);case"loaded":return i(n.transition,n.oldContainer,n.newContainer);case"ready":return i(n.transition,n.newContainer);default:return i()}},!1)}}]),s}(),Rt=we;var j=class extends A{constructor(s){super(s)}init(){new Rt({enterDelay:0,transitions:{customTransition:{}}}).on("loaded",(e,t,i)=>{this.call("destroy",t,"app"),this.call("update",i,"app")})}};var Se=s=>({url:s.src,width:s.naturalWidth,height:s.naturalHeight,ratio:s.naturalWidth/s.naturalHeight}),Ce=(s,e={})=>new Promise((t,i)=>{let n=new Image;e.crossOrigin&&(n.crossOrigin=e.crossOrigin);let r=()=>{t(dt({element:n},Se(n)))};n.decode?(n.src=s,n.decode().then(r).catch(o=>{i(o)})):(n.onload=r,n.onerror=o=>{i(o)},n.src=s)}),kt=[],Lt=(s,e,t)=>w(void 0,null,function*(){let i=e||s.dataset.src,n=kt.find(r=>r.url===i);if(!n){if(n=yield Ce(i),!n.url)return;kt.push(n)}s.src!==i&&(s.tagName==="IMG"?s.src=n.url:s.style.backgroundImage=`url(${n.url})`,requestAnimationFrame(()=>{let r=s.closest(`.${S.LAZY_CONTAINER}`);r&&(r.classList.add(S.LAZY_LOADED),r.style.backgroundImage=""),s.classList.add(S.LAZY_LOADED),t==null||t()}))});function Q(){return Q=Object.assign?Object.assign.bind():function(s){for(var e=1;e=1;let a=i?1:this.easing(l);this.value=this.from+(this.to-this.from)*a}var n,r,o;(t=this.onUpdate)==null||t.call(this,this.value,i),i&&this.stop()}stop(){this.isRunning=!1}fromTo(e,t,{lerp:i=.1,duration:n=1,easing:r=a=>a,onStart:o,onUpdate:l}){this.from=this.value=e,this.to=t,this.lerp=i,this.duration=n,this.easing=r,this.currentTime=0,this.isRunning=!0,o==null||o(),this.onUpdate=l}},et=class{constructor({wrapper:e,content:t,autoResize:i=!0}={}){if(this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth},this.wrapper=e,this.content=t,i){let n=function(r,o){let l;return function(){let a=arguments,h=this;clearTimeout(l),l=setTimeout(function(){r.apply(h,a)},250)}}(this.resize);this.wrapper!==window&&(this.wrapperResizeObserver=new ResizeObserver(n),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(n),this.contentResizeObserver.observe(this.content)}this.resize()}destroy(){var e,t;(e=this.wrapperResizeObserver)==null||e.disconnect(),(t=this.contentResizeObserver)==null||t.disconnect()}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},H=class{constructor(){this.events={}}emit(e,...t){let i=this.events[e]||[];for(let n=0,r=i.length;n{var n;this.events[e]=(n=this.events[e])==null?void 0:n.filter(r=>t!==r)}}off(e,t){var i;this.events[e]=(i=this.events[e])==null?void 0:i.filter(n=>t!==n)}destroy(){this.events={}}},it=class{constructor(e,{wheelMultiplier:t=1,touchMultiplier:i=2,normalizeWheel:n=!1}){this.onTouchStart=r=>{let{clientX:o,clientY:l}=r.targetTouches?r.targetTouches[0]:r;this.touchStart.x=o,this.touchStart.y=l,this.lastDelta={x:0,y:0}},this.onTouchMove=r=>{let{clientX:o,clientY:l}=r.targetTouches?r.targetTouches[0]:r,a=-(o-this.touchStart.x)*this.touchMultiplier,h=-(l-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=o,this.touchStart.y=l,this.lastDelta={x:a,y:h},this.emitter.emit("scroll",{deltaX:a,deltaY:h,event:r})},this.onTouchEnd=r=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:r})},this.onWheel=r=>{let{deltaX:o,deltaY:l}=r;this.normalizeWheel&&(o=W(-100,o,100),l=W(-100,l,100)),o*=this.wheelMultiplier,l*=this.wheelMultiplier,this.emitter.emit("scroll",{deltaX:o,deltaY:l,event:r})},this.element=e,this.wheelMultiplier=t,this.touchMultiplier=i,this.normalizeWheel=n,this.touchStart={x:null,y:null},this.emitter=new H,this.element.addEventListener("wheel",this.onWheel,{passive:!1}),this.element.addEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.addEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.addEventListener("touchend",this.onTouchEnd,{passive:!1})}on(e,t){return this.emitter.on(e,t)}destroy(){this.emitter.destroy(),this.element.removeEventListener("wheel",this.onWheel,{passive:!1}),this.element.removeEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.removeEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.removeEventListener("touchend",this.onTouchEnd,{passive:!1})}},B=class{constructor({wrapper:e=window,content:t=document.documentElement,wheelEventsTarget:i=e,eventsTarget:n=i,smoothWheel:r=!0,smoothTouch:o=!1,syncTouch:l=!1,syncTouchLerp:a=.1,__iosNoInertiaSyncTouchLerp:h=.4,touchInertiaMultiplier:c=35,duration:u,easing:d=m=>Math.min(1,1.001-Math.pow(2,-10*m)),lerp:f=!u&&.1,infinite:p=!1,orientation:y="vertical",gestureOrientation:L="vertical",touchMultiplier:_=1,wheelMultiplier:b=1,normalizeWheel:O=!1,autoResize:I=!0}={}){this.onVirtualScroll=({deltaX:m,deltaY:E,event:v})=>{if(v.ctrlKey)return;let C=v.type.includes("touch"),g=v.type.includes("wheel");if(this.options.gestureOrientation==="both"&&m===0&&E===0||this.options.gestureOrientation==="vertical"&&E===0||this.options.gestureOrientation==="horizontal"&&m===0||C&&this.options.gestureOrientation==="vertical"&&this.scroll===0&&!this.options.infinite&&E<=0)return;let z=v.composedPath();if(z=z.slice(0,z.indexOf(this.rootElement)),z.find(T=>{var ht;return(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent"))||C&&(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent-touch"))||g&&(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent-wheel"))||((ht=T.classList)==null?void 0:ht.contains("lenis"))}))return;if(this.isStopped||this.isLocked)return void v.preventDefault();if(this.isSmooth=(this.options.smoothTouch||this.options.syncTouch)&&C||this.options.smoothWheel&&g,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();v.preventDefault();let R=E;this.options.gestureOrientation==="both"?R=Math.abs(E)>Math.abs(m)?E:m:this.options.gestureOrientation==="horizontal"&&(R=m);let qt=C&&this.options.syncTouch,at=C&&v.type==="touchend"&&Math.abs(R)>1;at&&(R=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+R,Q({programmatic:!1},qt&&{lerp:at?this.syncTouchLerp:this.options.__iosNoInertiaSyncTouchLerp}))},this.onScroll=()=>{if(!this.isScrolling){let m=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-m),this.emit()}},window.lenisVersion="1.0.27",e!==document.documentElement&&e!==document.body||(e=window),this.options={wrapper:e,content:t,wheelEventsTarget:i,eventsTarget:n,smoothWheel:r,smoothTouch:o,syncTouch:l,syncTouchLerp:a,__iosNoInertiaSyncTouchLerp:h,touchInertiaMultiplier:c,duration:u,easing:d,lerp:f,infinite:p,gestureOrientation:L,orientation:y,touchMultiplier:_,wheelMultiplier:b,normalizeWheel:O,autoResize:I},this.animate=new tt,this.emitter=new H,this.dimensions=new et({wrapper:e,content:t,autoResize:I}),this.toggleClass("lenis",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=l||r||o,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onScroll,{passive:!1}),this.virtualScroll=new it(n,{touchMultiplier:_,wheelMultiplier:b,normalizeWheel:O}),this.virtualScroll.on("scroll",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onScroll,{passive:!1}),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClass("lenis",!1),this.toggleClass("lenis-smooth",!1),this.toggleClass("lenis-scrolling",!1),this.toggleClass("lenis-stopped",!1),this.toggleClass("lenis-locked",!1)}on(e,t){return this.emitter.on(e,t)}off(e,t){return this.emitter.off(e,t)}setScroll(e){this.isHorizontal?this.rootElement.scrollLeft=e:this.rootElement.scrollTop=e}resize(){this.dimensions.resize()}emit(){this.emitter.emit("scroll",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.velocity=0,this.animate.stop()}start(){this.isStopped=!1,this.reset()}stop(){this.isStopped=!0,this.animate.stop(),this.reset()}raf(e){let t=e-(this.time||e);this.time=e,this.animate.advance(.001*t)}scrollTo(e,{offset:t=0,immediate:i=!1,lock:n=!1,duration:r=this.options.duration,easing:o=this.options.easing,lerp:l=!r&&this.options.lerp,onComplete:a=null,force:h=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||h){if(["top","left","start"].includes(e))e=0;else if(["bottom","right","end"].includes(e))e=this.limit;else{var u;let d;if(typeof e=="string"?d=document.querySelector(e):(u=e)!=null&&u.nodeType&&(d=e),d){if(this.options.wrapper!==window){let p=this.options.wrapper.getBoundingClientRect();t-=this.isHorizontal?p.left:p.top}let f=d.getBoundingClientRect();e=(this.isHorizontal?f.left:f.top)+this.animatedScroll}}if(typeof e=="number"){if(e+=t,e=Math.round(e),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):e=W(0,e,this.limit),i)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),void(a==null||a(this));if(!c){if(e===this.targetScroll)return;this.targetScroll=e}this.animate.fromTo(this.animatedScroll,e,{duration:r,easing:o,lerp:l,onStart:()=>{n&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(d,f)=>{this.isScrolling=!0,this.velocity=d-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=d,this.setScroll(this.scroll),c&&(this.targetScroll=d),f||this.emit(),f&&requestAnimationFrame(()=>{this.reset(),this.emit(),a==null||a(this)})}})}}}get rootElement(){return this.options.wrapper===window?this.options.content:this.options.wrapper}get limit(){return this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return this.options.orientation==="horizontal"}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(this.animatedScroll%(e=this.limit)+e)%e:this.animatedScroll;var e}get progress(){return this.limit===0?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(e){this.__isSmooth!==e&&(this.__isSmooth=e,this.toggleClass("lenis-smooth",e))}get isScrolling(){return this.__isScrolling}set isScrolling(e){this.__isScrolling!==e&&(this.__isScrolling=e,this.toggleClass("lenis-scrolling",e))}get isStopped(){return this.__isStopped}set isStopped(e){this.__isStopped!==e&&(this.__isStopped=e,this.toggleClass("lenis-stopped",e))}get isLocked(){return this.__isLocked}set isLocked(e){this.__isLocked!==e&&(this.__isLocked=e,this.toggleClass("lenis-locked",e))}get className(){let e="lenis";return this.isStopped&&(e+=" lenis-stopped"),this.isLocked&&(e+=" lenis-locked"),this.isScrolling&&(e+=" lenis-scrolling"),this.isSmooth&&(e+=" lenis-smooth"),e}toggleClass(e,t){this.rootElement.classList.toggle(e,t),this.emitter.emit("className change",this)}};function st(){return st=Object.assign?Object.assign.bind():function(s){for(var e=1;e{e.forEach(t=>{let i=this.scrollElements.find(n=>n.$el===t.target);t.isIntersecting?(i&&(i.isAlreadyIntersected=!0),this._setInview(t)):i&&i.isAlreadyIntersected&&this._setOutOfView(t)})},{rootMargin:this.rootMargin});for(let e of this.scrollElements)this.observe(e.$el)}destroy(){this.observer.disconnect()}observe(e){e&&this.observer.observe(e)}unobserve(e){e&&this.observer.unobserve(e)}_setInview(e){let t=this.scrollElements.find(i=>i.$el===e.target);this.IORaf&&(t==null||t.setInteractivityOn()),!this.IORaf&&(t==null||t.setInview())}_setOutOfView(e){let t=this.scrollElements.find(i=>i.$el===e.target);this.IORaf&&(t==null||t.setInteractivityOff()),!this.IORaf&&(t==null||t.setOutOfView()),t!=null&&t.attributes.scrollRepeat||this.IORaf||this.unobserve(e.target)}};function zt(s,e,t,i,n){return t+((n-s)/(e-s)*(i-t)||0)}function Pt(s,e){return s.reduce((t,i)=>Math.abs(i-e)1?1:i;var i;if(this.progress=t,t!=this.lastProgress){if(this.lastProgress=t,this.attributes.scrollCssProgress&&this._setCssProgress(t),this.attributes.scrollEventProgress&&this._setCustomEventProgress(t),this.attributes.scrollModuleProgress)for(let n of this.progressModularModules)this.modularInstance&&this.modularInstance.call("onScrollProgress",t,n.moduleName,n.moduleId);t>0&&t<1&&this.setInview(),t===0&&this.setOutOfView(),t===1&&this.setOutOfView()}}_setCssProgress(e=0){this.$el.style.setProperty("--progress",e.toString())}_setCustomEventProgress(e=0){let t=this.attributes.scrollEventProgress;if(!t)return;let i=new CustomEvent(t,{detail:{target:this.$el,progress:e}});window.dispatchEvent(i)}_getProgressModularModules(){if(!this.modularInstance)return;let e=Object.keys(this.$el.dataset).filter(i=>i.includes("module")),t=Object.entries(this.modularInstance.modules);if(e.length)for(let i of e){let n=this.$el.dataset[i];if(!n)return;for(let r of t){let[o,l]=r;n in l&&this.progressModularModules.push({moduleName:o,moduleId:n})}}}_getScrollCallFrom(){let e=Pt([this.intersection.start,this.intersection.end],this.currentScroll);return this.intersection.start===e?"start":"end"}_dispatchCall(e,t){var i,n;let r=(i=this.attributes.scrollCall)==null?void 0:i.split(","),o=(n=this.attributes)==null?void 0:n.scrollCallSelf;if(r&&r.length>1){var l;let[a,h,c]=r,u;u=o?this.$el.dataset[`module${h.trim()}`]:c,this.modularInstance&&this.modularInstance.call(a.trim(),{target:this.$el,way:e,from:t},h.trim(),(l=u)==null?void 0:l.trim())}else if(r){let[a]=r,h=new CustomEvent(a,{detail:{target:this.$el,way:e,from:t}});window.dispatchEvent(h)}}},_e=["scrollOffset","scrollPosition","scrollModuleProgress","scrollCssProgress","scrollEventProgress","scrollSpeed"],rt=class{constructor({$el:e,modularInstance:t,triggerRootMargin:i,rafRootMargin:n,scrollOrientation:r}){this.$scrollContainer=void 0,this.modularInstance=void 0,this.triggerRootMargin=void 0,this.rafRootMargin=void 0,this.scrollElements=void 0,this.triggeredScrollElements=void 0,this.RAFScrollElements=void 0,this.scrollElementsToUpdate=void 0,this.IOTriggerInstance=void 0,this.IORafInstance=void 0,this.scrollOrientation=void 0,e?(this.$scrollContainer=e,this.modularInstance=t,this.scrollOrientation=r,this.triggerRootMargin=i!=null?i:"-1px -1px -1px -1px",this.rafRootMargin=n!=null?n:"100% 100% 100% 100%",this.scrollElements=[],this.triggeredScrollElements=[],this.RAFScrollElements=[],this.scrollElementsToUpdate=[],this._init()):console.error("Please provide a DOM Element as scrollContainer")}_init(){let e=this.$scrollContainer.querySelectorAll("[data-scroll]"),t=Array.from(e);this._subscribeScrollElements(t),this.IOTriggerInstance=new V({scrollElements:[...this.triggeredScrollElements],rootMargin:this.triggerRootMargin,IORaf:!1}),this.IORafInstance=new V({scrollElements:[...this.RAFScrollElements],rootMargin:this.rafRootMargin,IORaf:!0})}destroy(){this.IOTriggerInstance.destroy(),this.IORafInstance.destroy(),this._unsubscribeAllScrollElements()}onResize({currentScroll:e}){for(let t of this.RAFScrollElements)t.onResize({currentScroll:e})}onRender({currentScroll:e,smooth:t}){for(let i of this.scrollElementsToUpdate)i.onRender({currentScroll:e,smooth:t})}removeScrollElements(e){let t=e.querySelectorAll("[data-scroll]");if(t.length){for(let i=0;i-1&&(this.IOTriggerInstance.unobserve(n.$el),this.triggeredScrollElements.splice(i,1))}for(let i=0;i-1&&(this.IORafInstance.unobserve(n.$el),this.RAFScrollElements.splice(i,1))}t.forEach(i=>{let n=this.scrollElementsToUpdate.find(o=>o.$el===i),r=this.scrollElements.find(o=>o.$el===i);n&&this._unsubscribeElementUpdate(n),r&&(this.scrollElements=this.scrollElements.filter(o=>o.id!=r.id))})}}addScrollElements(e){let t=e.querySelectorAll("[data-scroll]"),i=[];this.scrollElements.forEach(o=>{i.push(o.id)});let n=Math.max(...i)+1,r=Array.from(t);this._subscribeScrollElements(r,n,!0)}_subscribeScrollElements(e,t=0,i=!1){for(let n=0;nt.id!=e.id)}_checkRafNeeded(e){let t=[..._e],i=n=>{t=t.filter(r=>r!=n)};if(e.dataset.scrollOffset){if(e.dataset.scrollOffset.split(",").map(n=>n.replace("%","").trim()).join(",")!="0,0")return!0;i("scrollOffset")}else i("scrollOffset");if(e.dataset.scrollPosition){if(e.dataset.scrollPosition.trim()!="top,bottom")return!0;i("scrollPosition")}else i("scrollPosition");if(e.dataset.scrollSpeed&&!isNaN(parseFloat(e.dataset.scrollSpeed)))return!0;i("scrollSpeed");for(let n of t)if(n in e.dataset)return!0;return!1}},ot=class{constructor({resizeElements:e,resizeCallback:t=()=>{}}){this.$resizeElements=void 0,this.isFirstObserve=void 0,this.observer=void 0,this.resizeCallback=void 0,this.$resizeElements=e,this.resizeCallback=t,this.isFirstObserve=!0,this._init()}_init(){this.observer=new ResizeObserver(e=>{var t;!this.isFirstObserve&&((t=this.resizeCallback)==null||t.call(this)),this.isFirstObserve=!1});for(let e of this.$resizeElements)this.observer.observe(e)}destroy(){this.observer.disconnect()}},Dt={wrapper:window,content:document.documentElement,eventsTarget:window,lerp:.1,duration:.75,orientation:"vertical",gestureOrientation:"vertical",smoothWheel:!0,smoothTouch:!1,syncTouch:!1,syncTouchLerp:.1,touchInertiaMultiplier:35,wheelMultiplier:1,touchMultiplier:2,normalizeWheel:!1,autoResize:!0,easing:s=>Math.min(1,1.001-Math.pow(2,-10*s))},q=class{constructor({lenisOptions:e={},modularInstance:t,triggerRootMargin:i,rafRootMargin:n,autoResize:r=!0,autoStart:o=!0,scrollCallback:l=()=>{},initCustomTicker:a,destroyCustomTicker:h}={}){this.rafPlaying=void 0,this.lenisInstance=void 0,this.coreInstance=void 0,this.lenisOptions=void 0,this.modularInstance=void 0,this.triggerRootMargin=void 0,this.rafRootMargin=void 0,this.rafInstance=void 0,this.autoResize=void 0,this.autoStart=void 0,this.ROInstance=void 0,this.initCustomTicker=void 0,this.destroyCustomTicker=void 0,this._onRenderBind=void 0,this._onResizeBind=void 0,this._onScrollToBind=void 0,this.lenisOptions=st({},Dt,e),Object.assign(this,{lenisOptions:e,modularInstance:t,triggerRootMargin:i,rafRootMargin:n,autoResize:r,autoStart:o,scrollCallback:l,initCustomTicker:a,destroyCustomTicker:h}),this._onRenderBind=this._onRender.bind(this),this._onScrollToBind=this._onScrollTo.bind(this),this._onResizeBind=this._onResize.bind(this),this.rafPlaying=!1,this._init()}_init(){var e;this.lenisInstance=new B({wrapper:this.lenisOptions.wrapper,content:this.lenisOptions.content,eventsTarget:this.lenisOptions.eventsTarget,lerp:this.lenisOptions.lerp,duration:this.lenisOptions.duration,orientation:this.lenisOptions.orientation,gestureOrientation:this.lenisOptions.gestureOrientation,smoothWheel:this.lenisOptions.smoothWheel,smoothTouch:this.lenisOptions.smoothTouch,syncTouch:this.lenisOptions.syncTouch,syncTouchLerp:this.lenisOptions.syncTouchLerp,touchInertiaMultiplier:this.lenisOptions.touchInertiaMultiplier,wheelMultiplier:this.lenisOptions.wheelMultiplier,touchMultiplier:this.lenisOptions.touchMultiplier,normalizeWheel:this.lenisOptions.normalizeWheel,easing:this.lenisOptions.easing}),(e=this.lenisInstance)==null||e.on("scroll",this.scrollCallback),document.documentElement.setAttribute("data-scroll-orientation",this.lenisInstance.options.orientation),requestAnimationFrame(()=>{this.coreInstance=new rt({$el:this.lenisInstance.rootElement,modularInstance:this.modularInstance,triggerRootMargin:this.triggerRootMargin,rafRootMargin:this.rafRootMargin,scrollOrientation:this.lenisInstance.options.orientation}),this._bindEvents(),this.initCustomTicker&&!this.destroyCustomTicker?console.warn("initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble."):!this.initCustomTicker&&this.destroyCustomTicker&&console.warn("destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble."),this.autoStart&&this.start()})}destroy(){this.stop(),this._unbindEvents(),this.lenisInstance.destroy(),this.coreInstance.destroy()}_bindEvents(){this._bindScrollToEvents(),this.autoResize&&("ResizeObserver"in window?this.ROInstance=new ot({resizeElements:[document.body],resizeCallback:this._onResizeBind}):window.addEventListener("resize",this._onResizeBind))}_unbindEvents(){this._unbindScrollToEvents(),this.autoResize&&("ResizeObserver"in window?this.ROInstance&&this.ROInstance.destroy():window.removeEventListener("resize",this._onResizeBind))}_bindScrollToEvents(e){let t=e||this.lenisInstance.rootElement,i=t==null?void 0:t.querySelectorAll("[data-scroll-to]");i!=null&&i.length&&i.forEach(n=>{n.addEventListener("click",this._onScrollToBind,!1)})}_unbindScrollToEvents(e){let t=e||this.lenisInstance.rootElement,i=t==null?void 0:t.querySelectorAll("[data-scroll-to]");i!=null&&i.length&&i.forEach(n=>{n.removeEventListener("click",this._onScrollToBind,!1)})}_onResize(){requestAnimationFrame(()=>{var e;(e=this.coreInstance)==null||e.onResize({currentScroll:this.lenisInstance.scroll})})}_onRender(){var e,t;(e=this.lenisInstance)==null||e.raf(Date.now()),(t=this.coreInstance)==null||t.onRender({currentScroll:this.lenisInstance.scroll,smooth:this.lenisInstance.isSmooth})}_onScrollTo(e){var t;e.preventDefault();let i=(t=e.currentTarget)!=null?t:null;if(!i)return;let n=i.getAttribute("data-scroll-to-href")||i.getAttribute("href"),r=i.getAttribute("data-scroll-to-offset")||0,o=i.getAttribute("data-scroll-to-duration")||this.lenisOptions.duration||Dt.duration;n&&this.scrollTo(n,{offset:typeof r=="string"?parseInt(r):r,duration:typeof o=="string"?parseInt(o):o})}start(){var e;this.rafPlaying||((e=this.lenisInstance)==null||e.start(),this.rafPlaying=!0,this.initCustomTicker?this.initCustomTicker(this._onRenderBind):this._raf())}stop(){var e;this.rafPlaying&&((e=this.lenisInstance)==null||e.stop(),this.rafPlaying=!1,this.destroyCustomTicker?this.destroyCustomTicker(this._onRenderBind):this.rafInstance&&cancelAnimationFrame(this.rafInstance))}removeScrollElements(e){var t;e?(this._unbindScrollToEvents(e),(t=this.coreInstance)==null||t.removeScrollElements(e)):console.error("Please provide a DOM Element as $oldContainer")}addScrollElements(e){var t;e?((t=this.coreInstance)==null||t.addScrollElements(e),requestAnimationFrame(()=>{this._bindScrollToEvents(e)})):console.error("Please provide a DOM Element as $newContainer")}resize(){this._onResizeBind()}scrollTo(e,t){var i;(i=this.lenisInstance)==null||i.scrollTo(e,{offset:t==null?void 0:t.offset,lerp:t==null?void 0:t.lerp,duration:t==null?void 0:t.duration,immediate:t==null?void 0:t.immediate,lock:t==null?void 0:t.lock,force:t==null?void 0:t.force,easing:t==null?void 0:t.easing,onComplete:t==null?void 0:t.onComplete})}_raf(){this._onRenderBind(),this.rafInstance=requestAnimationFrame(()=>this._raf())}};var G=class extends A{constructor(s){super(s)}init(){this.scroll=new q({modularInstance:this})}lazyLoad(s){Lt(s.target,null,()=>{})}scrollTo(s){var n;let i=s,{target:e}=i,t=ft(i,["target"]);t=Object.assign({duration:1},t),(n=this.scroll)==null||n.scrollTo(e,t)}destroy(){this.scroll.destroy()}};var jt=te(xt(),1);var X;w(void 0,null,function*(){if(k.IS_DEV){let s=yield Promise.resolve().then(()=>(Nt(),Ut));X=s==null?void 0:s.gridHelper}});function Wt(){(0,jt.default)(),X==null||X()}var Ht=(s,e,t=!1)=>{let i=null;return(...n)=>{clearTimeout(i);let r=()=>{i=null,t||s(...n)};t&&!i&&s(...n),i=setTimeout(r,e)}};var M=document.documentElement,ui=document.body;var Bt=new Et({modules:lt});window.addEventListener("load",s=>{let e=document.getElementById("main-css");e?e.isLoaded?Vt():e.addEventListener("load",t=>{Vt()}):console.warn('The "main-css" stylesheet not found')});function Vt(){Wt(),Bt.init(Bt),M.classList.add(S.LOADED),M.classList.add(S.READY),M.classList.remove(S.LOADING);let s=new CustomEvent(St.RESIZE_END);window.addEventListener("resize",()=>{M.style.setProperty("--vw",`${document.documentElement.clientWidth*.01}px`),Ht(()=>{window.dispatchEvent(s)},200,!1)}),_t&&It($.EAGER,k.IS_DEV).then(e=>{M.classList.add(S.FONTS_LOADED),k.IS_DEV&&(console.group("Eager fonts loaded!",e.length,"/",document.fonts.size),console.group("State of eager fonts:"),e.forEach(t=>console.log(t.family,t.style,t.weight,t.status)),console.groupEnd(),console.group("State of all fonts:"),document.fonts.forEach(t=>console.log(t.family,t.style,t.weight,t.status)),console.groupEnd())})}})(); +(() => { + var __create = Object.create; + var __defProp = Object.defineProperty; + var __getOwnPropDesc = Object.getOwnPropertyDescriptor; + var __getOwnPropNames = Object.getOwnPropertyNames; + var __getOwnPropSymbols = Object.getOwnPropertySymbols; + var __getProtoOf = Object.getPrototypeOf; + var __hasOwnProp = Object.prototype.hasOwnProperty; + var __propIsEnum = Object.prototype.propertyIsEnumerable; + var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; + var __spreadValues = (a2, b) => { + for (var prop in b || (b = {})) + if (__hasOwnProp.call(b, prop)) + __defNormalProp(a2, prop, b[prop]); + if (__getOwnPropSymbols) + for (var prop of __getOwnPropSymbols(b)) { + if (__propIsEnum.call(b, prop)) + __defNormalProp(a2, prop, b[prop]); + } + return a2; + }; + var __objRest = (source, exclude) => { + var target = {}; + for (var prop in source) + if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0) + target[prop] = source[prop]; + if (source != null && __getOwnPropSymbols) + for (var prop of __getOwnPropSymbols(source)) { + if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop)) + target[prop] = source[prop]; + } + return target; + }; + var __esm = (fn, res) => function __init() { + return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res; + }; + var __commonJS = (cb, mod) => function __require() { + return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports; + }; + var __export = (target, all) => { + for (var name in all) + __defProp(target, name, { get: all[name], enumerable: true }); + }; + var __copyProps = (to, from, except, desc) => { + if (from && typeof from === "object" || typeof from === "function") { + for (let key of __getOwnPropNames(from)) + if (!__hasOwnProp.call(to, key) && key !== except) + __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); + } + return to; + }; + var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( + // If the importer is in node compatibility mode or this is not an ESM + // file that has been converted to a CommonJS file using a Babel- + // compatible transform (i.e. "__esModule" has not been set), then set + // "default" to the CommonJS "module.exports" for node compatibility. + isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, + mod + )); + var __async = (__this, __arguments, generator) => { + return new Promise((resolve, reject) => { + var fulfilled = (value) => { + try { + step(generator.next(value)); + } catch (e3) { + reject(e3); + } + }; + var rejected = (value) => { + try { + step(generator.throw(value)); + } catch (e3) { + reject(e3); + } + }; + var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected); + step((generator = generator.apply(__this, __arguments)).next()); + }); + }; + + // node_modules/svg4everybody/dist/svg4everybody.js + var require_svg4everybody = __commonJS({ + "node_modules/svg4everybody/dist/svg4everybody.js"(exports, module) { + !function(root, factory) { + "function" == typeof define && define.amd ? ( + // AMD. Register as an anonymous module unless amdModuleId is set + define([], function() { + return root.svg4everybody = factory(); + }) + ) : "object" == typeof module && module.exports ? ( + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory() + ) : root.svg4everybody = factory(); + }(exports, function() { + function embed(parent, svg, target) { + if (target) { + var fragment = document.createDocumentFragment(), viewBox = !svg.hasAttribute("viewBox") && target.getAttribute("viewBox"); + viewBox && svg.setAttribute("viewBox", viewBox); + for (var clone = target.cloneNode(true); clone.childNodes.length; ) { + fragment.appendChild(clone.firstChild); + } + parent.appendChild(fragment); + } + } + function loadreadystatechange(xhr) { + xhr.onreadystatechange = function() { + if (4 === xhr.readyState) { + var cachedDocument = xhr._cachedDocument; + cachedDocument || (cachedDocument = xhr._cachedDocument = document.implementation.createHTMLDocument(""), cachedDocument.body.innerHTML = xhr.responseText, xhr._cachedTarget = {}), // clear the xhr embeds list and embed each item + xhr._embeds.splice(0).map(function(item) { + var target = xhr._cachedTarget[item.id]; + target || (target = xhr._cachedTarget[item.id] = cachedDocument.getElementById(item.id)), // embed the target into the svg + embed(item.parent, item.svg, target); + }); + } + }, // test the ready state change immediately + xhr.onreadystatechange(); + } + function svg4everybody2(rawopts) { + function oninterval() { + for (var index = 0; index < uses.length; ) { + var use = uses[index], parent = use.parentNode, svg = getSVGAncestor(parent), src = use.getAttribute("xlink:href") || use.getAttribute("href"); + if (!src && opts.attributeName && (src = use.getAttribute(opts.attributeName)), svg && src) { + if (polyfill) { + if (!opts.validate || opts.validate(src, svg, use)) { + parent.removeChild(use); + var srcSplit = src.split("#"), url = srcSplit.shift(), id = srcSplit.join("#"); + if (url.length) { + var xhr = requests[url]; + xhr || (xhr = requests[url] = new XMLHttpRequest(), xhr.open("GET", url), xhr.send(), xhr._embeds = []), // add the svg and id as an item to the xhr embeds list + xhr._embeds.push({ + parent, + svg, + id + }), // prepare the xhr ready state change event + loadreadystatechange(xhr); + } else { + embed(parent, svg, document.getElementById(id)); + } + } else { + ++index, ++numberOfSvgUseElementsToBypass; + } + } + } else { + ++index; + } + } + (!uses.length || uses.length - numberOfSvgUseElementsToBypass > 0) && requestAnimationFrame2(oninterval, 67); + } + var polyfill, opts = Object(rawopts), newerIEUA = /\bTrident\/[567]\b|\bMSIE (?:9|10)\.0\b/, webkitUA = /\bAppleWebKit\/(\d+)\b/, olderEdgeUA = /\bEdge\/12\.(\d+)\b/, edgeUA = /\bEdge\/.(\d+)\b/, inIframe = window.top !== window.self; + polyfill = "polyfill" in opts ? opts.polyfill : newerIEUA.test(navigator.userAgent) || (navigator.userAgent.match(olderEdgeUA) || [])[1] < 10547 || (navigator.userAgent.match(webkitUA) || [])[1] < 537 || edgeUA.test(navigator.userAgent) && inIframe; + var requests = {}, requestAnimationFrame2 = window.requestAnimationFrame || setTimeout, uses = document.getElementsByTagName("use"), numberOfSvgUseElementsToBypass = 0; + polyfill && oninterval(); + } + function getSVGAncestor(node) { + for (var svg = node; "svg" !== svg.nodeName.toLowerCase() && (svg = svg.parentNode); ) { + } + return svg; + } + return svg4everybody2; + }); + } + }); + + // assets/scripts/utils/grid-helper.js + var grid_helper_exports = {}; + __export(grid_helper_exports, { + gridHelper: () => gridHelper + }); + function gridHelper({ + gutterCssVar = GRID_HELPER_GUTTER_CSS_VAR, + marginCssVar = GRID_HELPER_MARGIN_CSS_VAR, + rgbaColor = GRID_HELPER_RGBA_COLOR + } = {}) { + const $gridContainer = document.createElement("div"); + document.body.append($gridContainer); + setGridHelperColumns($gridContainer, rgbaColor); + setGridHelperStyles($gridContainer, gutterCssVar, marginCssVar); + setGridEvents($gridContainer, rgbaColor); + } + function setGridHelperStyles($container, gutterCssVar, marginCssVar) { + const elStyles = $container.style; + elStyles.zIndex = "10000"; + elStyles.position = "fixed"; + elStyles.top = "0"; + elStyles.left = "0"; + elStyles.display = "flex"; + elStyles.width = "100%"; + elStyles.height = "100%"; + elStyles.columnGap = `var(${gutterCssVar}, 0)`; + elStyles.paddingLeft = `var(${marginCssVar}, 0)`; + elStyles.paddingRight = `var(${marginCssVar}, 0)`; + elStyles.pointerEvents = "none"; + elStyles.visibility = "hidden"; + } + function setGridHelperColumns($container, rgbaColor) { + $container.innerHTML = ""; + const columns = Number( + window.getComputedStyle($container).getPropertyValue("--grid-columns") + ); + let $col; + for (var i3 = 0; i3 < columns; i3++) { + $col = document.createElement("div"); + $col.style.flex = "1 1 0"; + $col.style.backgroundColor = rgbaColor; + $container.appendChild($col); + } + } + function setGridEvents($container, rgbaColor) { + window.addEventListener( + "resize", + setGridHelperColumns($container, rgbaColor) + ); + let ctrlDown = false; + let isActive = false; + document.addEventListener("keydown", (e3) => { + if (e3.key == "Control") { + ctrlDown = true; + } else { + if (ctrlDown && e3.key == "g") { + if (isActive) { + $container.style.visibility = "hidden"; + } else { + $container.style.visibility = "visible"; + } + isActive = !isActive; + } + } + }); + document.addEventListener("keyup", (e3) => { + if (e3.key == "Control") { + ctrlDown = false; + } + }); + } + var GRID_HELPER_GUTTER_CSS_VAR, GRID_HELPER_MARGIN_CSS_VAR, GRID_HELPER_RGBA_COLOR; + var init_grid_helper = __esm({ + "assets/scripts/utils/grid-helper.js"() { + GRID_HELPER_GUTTER_CSS_VAR = "--grid-gutter"; + GRID_HELPER_MARGIN_CSS_VAR = "--grid-margin"; + GRID_HELPER_RGBA_COLOR = "rgba(255, 0, 0, .1)"; + } + }); + + // node_modules/modujs/dist/main.esm.js + function _typeof(obj) { + "@babel/helpers - typeof"; + if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { + _typeof = function(obj2) { + return typeof obj2; + }; + } else { + _typeof = function(obj2) { + return obj2 && typeof Symbol === "function" && obj2.constructor === Symbol && obj2 !== Symbol.prototype ? "symbol" : typeof obj2; + }; + } + return _typeof(obj); + } + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + function _defineProperties(target, props) { + for (var i3 = 0; i3 < props.length; i3++) { + var descriptor = props[i3]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) + descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) + _defineProperties(Constructor.prototype, protoProps); + if (staticProps) + _defineProperties(Constructor, staticProps); + return Constructor; + } + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + return obj; + } + function _slicedToArray(arr, i3) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i3) || _unsupportedIterableToArray(arr, i3) || _nonIterableRest(); + } + function _toConsumableArray(arr) { + return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); + } + function _arrayWithoutHoles(arr) { + if (Array.isArray(arr)) + return _arrayLikeToArray(arr); + } + function _arrayWithHoles(arr) { + if (Array.isArray(arr)) + return arr; + } + function _iterableToArray(iter) { + if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) + return Array.from(iter); + } + function _iterableToArrayLimit(arr, i3) { + if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) + return; + var _arr = []; + var _n = true; + var _d = false; + var _e = void 0; + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i3 && _arr.length === i3) + break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) + _i["return"](); + } finally { + if (_d) + throw _e; + } + } + return _arr; + } + function _unsupportedIterableToArray(o3, minLen) { + if (!o3) + return; + if (typeof o3 === "string") + return _arrayLikeToArray(o3, minLen); + var n3 = Object.prototype.toString.call(o3).slice(8, -1); + if (n3 === "Object" && o3.constructor) + n3 = o3.constructor.name; + if (n3 === "Map" || n3 === "Set") + return Array.from(o3); + if (n3 === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n3)) + return _arrayLikeToArray(o3, minLen); + } + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) + len = arr.length; + for (var i3 = 0, arr2 = new Array(len); i3 < len; i3++) + arr2[i3] = arr[i3]; + return arr2; + } + function _nonIterableSpread() { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + var _default = /* @__PURE__ */ function() { + function _default3(options) { + _classCallCheck(this, _default3); + this.mAttr = "data-" + options.dataName; + this.mCaptureEvents = ["mouseenter", "mouseleave"]; + this.el = options.el; + } + _createClass(_default3, [{ + key: "mInit", + value: function mInit(modules) { + var _this = this; + this.modules = modules; + this.mCheckEventTarget = this.mCheckEventTarget.bind(this); + if (this.events) { + Object.keys(this.events).forEach(function(event) { + return _this.mAddEvent(event); + }); + } + } + }, { + key: "mUpdate", + value: function mUpdate(modules) { + this.modules = modules; + } + }, { + key: "mDestroy", + value: function mDestroy() { + var _this2 = this; + if (this.events) { + Object.keys(this.events).forEach(function(event) { + return _this2.mRemoveEvent(event); + }); + } + } + }, { + key: "mAddEvent", + value: function mAddEvent(event) { + var capture = this.mCaptureEvents.includes(event) ? true : false; + this.el.addEventListener(event, this.mCheckEventTarget, capture); + } + }, { + key: "mRemoveEvent", + value: function mRemoveEvent(event) { + var capture = this.mCaptureEvents.includes(event) ? true : false; + this.el.removeEventListener(event, this.mCheckEventTarget, capture); + } + }, { + key: "mCheckEventTarget", + value: function mCheckEventTarget(e3) { + var event = this.events[e3.type]; + if (typeof event === "string") { + this[event](e3); + } else { + var data = "[" + this.mAttr + "]"; + var target = e3.target; + if (this.mCaptureEvents.includes(e3.type)) { + if (target.matches(data)) { + this.mCallEventMethod(e3, event, target); + } + } else { + while (target && target !== document) { + if (target.matches(data)) { + if (this.mCallEventMethod(e3, event, target) != "undefined") { + break; + } + } + target = target.parentNode; + } + } + } + } + }, { + key: "mCallEventMethod", + value: function mCallEventMethod(e3, event, target) { + var name = target.getAttribute(this.mAttr); + if (event.hasOwnProperty(name)) { + var method = event[name]; + if (!e3.hasOwnProperty("currentTarget")) { + Object.defineProperty(e3, "currentTarget", { + value: target + }); + } + if (!e3.hasOwnProperty("curTarget")) { + Object.defineProperty(e3, "curTarget", { + value: target + }); + } + this[method](e3); + } + } + }, { + key: "$", + value: function $(query, context) { + var classIndex = query.indexOf("."); + var idIndex = query.indexOf("#"); + var attrIndex = query.indexOf("["); + var indexes = [classIndex, idIndex, attrIndex].filter(function(index2) { + return index2 != -1; + }); + var index = false; + var name = query; + var more = ""; + var parent = this.el; + if (indexes.length) { + index = Math.min.apply(Math, _toConsumableArray(indexes)); + name = query.slice(0, index); + more = query.slice(index); + } + if (_typeof(context) == "object") { + parent = context; + } + return parent.querySelectorAll("[" + this.mAttr + "=" + name + "]" + more); + } + }, { + key: "parent", + value: function parent(query, context) { + var data = "[" + this.mAttr + "=" + query + "]"; + var parent2 = context.parentNode; + while (parent2 && parent2 !== document) { + if (parent2.matches(data)) { + return parent2; + } + parent2 = parent2.parentNode; + } + } + }, { + key: "getData", + value: function getData(name, context) { + var target = context || this.el; + return target.getAttribute(this.mAttr + "-" + name); + } + }, { + key: "setData", + value: function setData(name, value, context) { + var target = context || this.el; + return target.setAttribute(this.mAttr + "-" + name, value); + } + }, { + key: "call", + value: function call(func, args, mod, id) { + var _this3 = this; + if (args && !mod) { + mod = args; + args = false; + } + if (this.modules[mod]) { + if (id) { + if (this.modules[mod][id]) { + this.modules[mod][id][func](args); + } + } else { + Object.keys(this.modules[mod]).forEach(function(id2) { + _this3.modules[mod][id2][func](args); + }); + } + } + } + }, { + key: "on", + value: function on(e3, mod, func, id) { + var _this4 = this; + if (this.modules[mod]) { + if (id) { + this.modules[mod][id].el.addEventListener(e3, function(o3) { + return func(o3); + }); + } else { + Object.keys(this.modules[mod]).forEach(function(i3) { + _this4.modules[mod][i3].el.addEventListener(e3, function(o3) { + return func(o3); + }); + }); + } + } + } + }, { + key: "init", + value: function init2() { + } + }, { + key: "destroy", + value: function destroy() { + } + }]); + return _default3; + }(); + var _default$1 = /* @__PURE__ */ function() { + function _default3(options) { + _classCallCheck(this, _default3); + this.app; + this.modules = options.modules; + this.currentModules = {}; + this.activeModules = {}; + this.newModules = {}; + this.moduleId = 0; + } + _createClass(_default3, [{ + key: "init", + value: function init2(app2, scope) { + var _this = this; + var container = scope || document; + var elements = container.querySelectorAll("*"); + if (app2 && !this.app) { + this.app = app2; + } + this.activeModules["app"] = { + "app": this.app + }; + elements.forEach(function(el) { + Array.from(el.attributes).forEach(function(i3) { + if (i3.name.startsWith("data-module")) { + var moduleExists = false; + var dataName = i3.name.split("-").splice(2); + var moduleName = _this.toCamel(dataName); + if (_this.modules[moduleName]) { + moduleExists = true; + } else if (_this.modules[_this.toUpper(moduleName)]) { + moduleName = _this.toUpper(moduleName); + moduleExists = true; + } + if (moduleExists) { + var options = { + el, + name: moduleName, + dataName: dataName.join("-") + }; + var module = new _this.modules[moduleName](options); + var id = i3.value; + if (!id) { + _this.moduleId++; + id = "m" + _this.moduleId; + el.setAttribute(i3.name, id); + } + _this.addActiveModule(moduleName, id, module); + var moduleId = moduleName + "-" + id; + if (scope) { + _this.newModules[moduleId] = module; + } else { + _this.currentModules[moduleId] = module; + } + } + } + }); + }); + Object.entries(this.currentModules).forEach(function(_ref) { + var _ref2 = _slicedToArray(_ref, 2), id = _ref2[0], module = _ref2[1]; + if (scope) { + var split = id.split("-"); + var moduleName = split.shift(); + var moduleId = split.pop(); + _this.addActiveModule(moduleName, moduleId, module); + } else { + _this.initModule(module); + } + }); + } + }, { + key: "initModule", + value: function initModule(module) { + module.mInit(this.activeModules); + module.init(); + } + }, { + key: "addActiveModule", + value: function addActiveModule(name, id, module) { + if (this.activeModules[name]) { + Object.assign(this.activeModules[name], _defineProperty({}, id, module)); + } else { + this.activeModules[name] = _defineProperty({}, id, module); + } + } + }, { + key: "update", + value: function update(scope) { + var _this2 = this; + this.init(this.app, scope); + Object.entries(this.currentModules).forEach(function(_ref3) { + var _ref4 = _slicedToArray(_ref3, 2), id = _ref4[0], module = _ref4[1]; + module.mUpdate(_this2.activeModules); + }); + Object.entries(this.newModules).forEach(function(_ref5) { + var _ref6 = _slicedToArray(_ref5, 2), id = _ref6[0], module = _ref6[1]; + _this2.initModule(module); + }); + Object.assign(this.currentModules, this.newModules); + } + }, { + key: "destroy", + value: function destroy(scope) { + if (scope) { + this.destroyScope(scope); + } else { + this.destroyModules(); + } + } + }, { + key: "destroyScope", + value: function destroyScope(scope) { + var _this3 = this; + var elements = scope.querySelectorAll("*"); + elements.forEach(function(el) { + Array.from(el.attributes).forEach(function(i3) { + if (i3.name.startsWith("data-module")) { + var id = i3.value; + var dataName = i3.name.split("-").splice(2); + var moduleName = _this3.toCamel(dataName) + "-" + id; + var moduleExists = false; + if (_this3.currentModules[moduleName]) { + moduleExists = true; + } else if (_this3.currentModules[_this3.toUpper(moduleName)]) { + moduleName = _this3.toUpper(moduleName); + moduleExists = true; + } + if (moduleExists) { + _this3.destroyModule(_this3.currentModules[moduleName]); + delete _this3.currentModules[moduleName]; + } + } + }); + }); + this.activeModules = {}; + this.newModules = {}; + } + }, { + key: "destroyModules", + value: function destroyModules() { + var _this4 = this; + Object.entries(this.currentModules).forEach(function(_ref7) { + var _ref8 = _slicedToArray(_ref7, 2), id = _ref8[0], module = _ref8[1]; + _this4.destroyModule(module); + }); + this.currentModules = []; + } + }, { + key: "destroyModule", + value: function destroyModule(module) { + module.mDestroy(); + module.destroy(); + } + }, { + key: "toCamel", + value: function toCamel(arr) { + var _this5 = this; + return arr.reduce(function(a2, b) { + return a2 + _this5.toUpper(b); + }); + } + }, { + key: "toUpper", + value: function toUpper(str) { + return str.charAt(0).toUpperCase() + str.slice(1); + } + }]); + return _default3; + }(); + var main_esm_default = _default$1; + + // assets/scripts/modules.js + var modules_exports = {}; + __export(modules_exports, { + Example: () => Example_default, + Load: () => Load_default, + Scroll: () => Scroll_default + }); + + // assets/scripts/config.js + var NODE_ENV = "development"; + var IS_MOBILE = window.matchMedia("(any-pointer:coarse)").matches; + var ENV = Object.freeze({ + // Node environment + NAME: NODE_ENV, + IS_PROD: NODE_ENV === "production", + IS_DEV: NODE_ENV === "development", + // Device + IS_MOBILE, + IS_DESKTOP: !IS_MOBILE + }); + var CSS_CLASS = Object.freeze({ + LOADING: "is-loading", + LOADED: "is-loaded", + READY: "is-ready", + FONTS_LOADED: "fonts-loaded", + LAZY_CONTAINER: "c-lazy", + LAZY_LOADED: "-lazy-loaded" + // ... + }); + var CUSTOM_EVENT = Object.freeze({ + RESIZE_END: "loco.resizeEnd" + // ... + }); + var FONT = Object.freeze({ + EAGER: [ + { family: "Source Sans", style: "normal", weight: 400 }, + { family: "Source Sans", style: "normal", weight: 700 } + ] + }); + + // assets/scripts/utils/fonts.js + var isFontLoadingAPIAvailable = "fonts" in document; + function conformsToReference(font, criterion2) { + for (const [key, value] of Object.entries(criterion2)) { + switch (key) { + case "family": { + if (trim(font[key]) !== value) { + return false; + } + break; + } + case "weight": { + if (font[key] != value) { + return false; + } + break; + } + default: { + if (font[key] !== value) { + return false; + } + break; + } + } + } + return true; + } + function conformsToShorthand(font, criterion2) { + const family = trim(font.family); + if (trim(family) === criterion2) { + return true; + } + if (criterion2.endsWith(trim(family)) && (criterion2.match(font.weight) || criterion2.match(font.style))) { + return true; + } + return true; + } + function findManyByReference(search) { + const found = []; + for (const font of document.fonts) { + if (conformsToReference(font, search)) { + found.push(font); + } + } + return found; + } + function findManyByShorthand(search) { + const found = []; + for (const font of document.fonts) { + if (conformsToShorthand(font, search)) { + found.push(font); + } + } + return found; + } + function getMany(queries) { + if (!Array.isArray(queries)) { + queries = [queries]; + } + const found = /* @__PURE__ */ new Set(); + queries.forEach((search) => { + if (search) { + switch (typeof search) { + case "string": + found.add(...findManyByShorthand(search)); + return; + case "object": + found.add(...findManyByReference(search)); + return; + } + } + throw new TypeError( + "Expected font query to be font shorthand or font reference" + ); + }); + return [...found]; + } + function loadFonts(fontsToLoad, debug = false) { + return __async(this, null, function* () { + var _a; + if (((_a = fontsToLoad.size) != null ? _a : fontsToLoad.length) === 0) { + throw new TypeError( + "Expected at least one font" + ); + } + return yield loadFontsWithAPI([...fontsToLoad], debug); + }); + } + function loadFontFaceWithAPI(font) { + return __async(this, null, function* () { + return yield (font.status === "unloaded" ? font.load() : font.loaded).then((font2) => font2, (err) => font); + }); + } + function loadFontsWithAPI(fontsToLoad, debug = false) { + return __async(this, null, function* () { + debug && console.group("[loadFonts:API]", fontsToLoad.length, "/", document.fonts.size); + const fontsToBeLoaded = []; + for (const fontToLoad of fontsToLoad) { + if (fontToLoad instanceof FontFace) { + if (!document.fonts.has(fontToLoad)) { + document.fonts.add(fontToLoad); + } + fontsToBeLoaded.push( + loadFontFaceWithAPI(fontToLoad) + ); + } else { + fontsToBeLoaded.push( + ...getMany(fontToLoad).map((font) => loadFontFaceWithAPI(font)) + ); + } + } + debug && console.groupEnd(); + return yield Promise.all(fontsToBeLoaded); + }); + } + function trim(value) { + return value.replace(/['"]+/g, ""); + } + function whenReady(queries) { + return __async(this, null, function* () { + const fonts = getMany(queries); + return yield Promise.all(fonts.map((font) => font.loaded)); + }); + } + + // assets/scripts/modules/Example.js + var Example_default = class extends _default { + constructor(m) { + super(m); + } + init() { + whenReady(FONT.EAGER).then((fonts) => this.onFontsLoaded(fonts)); + } + onFontsLoaded(fonts) { + console.log("Example: Eager Fonts Loaded!", fonts); + } + }; + + // node_modules/modularload/dist/main.esm.js + function _classCallCheck2(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + function _defineProperties2(target, props) { + for (var i3 = 0; i3 < props.length; i3++) { + var descriptor = props[i3]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) + descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + function _createClass2(Constructor, protoProps, staticProps) { + if (protoProps) + _defineProperties2(Constructor.prototype, protoProps); + if (staticProps) + _defineProperties2(Constructor, staticProps); + return Constructor; + } + function _slicedToArray2(arr, i3) { + return _arrayWithHoles2(arr) || _iterableToArrayLimit2(arr, i3) || _unsupportedIterableToArray2(arr, i3) || _nonIterableRest2(); + } + function _arrayWithHoles2(arr) { + if (Array.isArray(arr)) + return arr; + } + function _iterableToArrayLimit2(arr, i3) { + var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; + if (_i == null) + return; + var _arr = []; + var _n = true; + var _d = false; + var _s, _e; + try { + for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + if (i3 && _arr.length === i3) + break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) + _i["return"](); + } finally { + if (_d) + throw _e; + } + } + return _arr; + } + function _unsupportedIterableToArray2(o3, minLen) { + if (!o3) + return; + if (typeof o3 === "string") + return _arrayLikeToArray2(o3, minLen); + var n3 = Object.prototype.toString.call(o3).slice(8, -1); + if (n3 === "Object" && o3.constructor) + n3 = o3.constructor.name; + if (n3 === "Map" || n3 === "Set") + return Array.from(o3); + if (n3 === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n3)) + return _arrayLikeToArray2(o3, minLen); + } + function _arrayLikeToArray2(arr, len) { + if (len == null || len > arr.length) + len = arr.length; + for (var i3 = 0, arr2 = new Array(len); i3 < len; i3++) + arr2[i3] = arr[i3]; + return arr2; + } + function _nonIterableRest2() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + var _default2 = /* @__PURE__ */ function() { + function _default3(options) { + _classCallCheck2(this, _default3); + this.defaults = { + name: "load", + loadingClass: "is-loading", + loadedClass: "is-loaded", + readyClass: "is-ready", + transitionsPrefix: "is-", + transitionsHistory: true, + enterDelay: 0, + exitDelay: 0, + loadedDelay: 0, + isLoaded: false, + isEntered: false, + isUrl: false, + transitionContainer: null, + popstateIgnore: false + }; + Object.assign(this, this.defaults, options); + this.options = options; + this.namespace = "modular"; + this.html = document.documentElement; + this.href = window.location.href; + this.container = "data-" + this.name + "-container"; + this.subContainer = false; + this.prevTransition = null; + this.loadAttributes = ["src", "srcset", "style", "href"]; + this.isInserted = false; + this.isLoading = false; + this.enterTimeout = false; + this.controller = new AbortController(); + this.classContainer = this.html; + this.isChrome = navigator.userAgent.indexOf("Chrome") != -1 ? true : false; + this.init(); + } + _createClass2(_default3, [{ + key: "init", + value: function init2() { + var _this = this; + window.addEventListener("popstate", function(e3) { + return _this.checkState(e3); + }, false); + this.html.addEventListener("click", function(e3) { + return _this.checkClick(e3); + }, false); + this.loadEls(document); + } + }, { + key: "checkClick", + value: function checkClick(e3) { + if (!e3.ctrlKey && !e3.metaKey) { + var target = e3.target; + while (target && target !== document) { + if (target.matches("a") && target.getAttribute("download") == null) { + var href = target.getAttribute("href"); + if (!href.startsWith("#") && !href.startsWith("mailto:") && !href.startsWith("tel:")) { + e3.preventDefault(); + this.reset(); + this.getClickOptions(target); + } + break; + } + target = target.parentNode; + } + } + } + }, { + key: "checkState", + value: function checkState() { + if (typeof this.popstateIgnore === "string" && window.location.href.indexOf(this.popstateIgnore) > -1) { + return; + } + this.reset(); + this.getStateOptions(); + } + }, { + key: "reset", + value: function reset() { + if (this.isLoading) { + this.controller.abort(); + this.isLoading = false; + this.controller = new AbortController(); + } + window.clearTimeout(this.enterTimeout); + if (this.isInserted) { + this.removeContainer(); + } + this.classContainer = this.html; + Object.assign(this, this.defaults, this.options); + } + }, { + key: "getClickOptions", + value: function getClickOptions(link) { + this.transition = link.getAttribute("data-" + this.name); + this.isUrl = link.getAttribute("data-" + this.name + "-url"); + var href = link.getAttribute("href"); + var target = link.getAttribute("target"); + if (target == "_blank") { + window.open(href, "_blank"); + return; + } + if (this.transition == "false") { + window.location = href; + return; + } + this.setOptions(href, true); + } + }, { + key: "getStateOptions", + value: function getStateOptions() { + if (this.transitionsHistory) { + this.transition = history.state; + } else { + this.transition = false; + } + var href = window.location.href; + this.setOptions(href); + } + }, { + key: "goTo", + value: function goTo(href, transition, isUrl) { + this.reset(); + this.transition = transition; + this.isUrl = isUrl; + this.setOptions(href, true); + } + }, { + key: "setOptions", + value: function setOptions(href, push) { + var container = "[" + this.container + "]"; + var oldContainer; + if (this.transition && this.transition != "true") { + this.transitionContainer = "[" + this.container + '="' + this.transition + '"]'; + this.loadingClass = this.transitions[this.transition].loadingClass || this.loadingClass; + this.loadedClass = this.transitions[this.transition].loadedClass || this.loadedClass; + this.readyClass = this.transitions[this.transition].readyClass || this.readyClass; + this.transitionsPrefix = this.transitions[this.transition].transitionsPrefix || this.transitionsPrefix; + this.enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay; + this.exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay; + this.loadedDelay = this.transitions[this.transition].loadedDelay || this.loadedDelay; + oldContainer = document.querySelector(this.transitionContainer); + } + if (oldContainer) { + container = this.transitionContainer; + this.oldContainer = oldContainer; + this.classContainer = this.oldContainer.parentNode; + if (!this.subContainer) { + history.replaceState(this.transition, null, this.href); + } + this.subContainer = true; + } else { + this.oldContainer = document.querySelector(container); + if (this.subContainer) { + history.replaceState(this.prevTransition, null, this.href); + } + this.subContainer = false; + } + this.href = href; + this.parentContainer = this.oldContainer.parentNode; + if (this.isUrl === "" || this.isUrl != null && this.isUrl != "false" && this.isUrl != false) { + history.pushState(this.transition, null, href); + } else { + this.oldContainer.classList.add("is-old"); + this.setLoading(); + this.startEnterDelay(); + this.loadHref(href, container, push); + } + } + }, { + key: "setLoading", + value: function setLoading() { + this.classContainer.classList.remove(this.loadedClass, this.readyClass); + this.classContainer.classList.add(this.loadingClass); + this.classContainer.classList.remove(this.transitionsPrefix + this.prevTransition); + if (this.transition) { + this.classContainer.classList.add(this.transitionsPrefix + this.transition); + } + if (!this.subContainer) { + this.prevTransition = this.transition; + } + var loadingEvent = new Event(this.namespace + "loading"); + window.dispatchEvent(loadingEvent); + } + }, { + key: "startEnterDelay", + value: function startEnterDelay() { + var _this2 = this; + this.enterTimeout = window.setTimeout(function() { + _this2.isEntered = true; + if (_this2.isLoaded) { + _this2.transitionContainers(); + } + }, this.enterDelay); + } + }, { + key: "loadHref", + value: function loadHref(href, container, push) { + var _this3 = this; + this.isLoading = true; + var signal = this.controller.signal; + fetch(href, { + signal + }).then(function(response) { + return response.text(); + }).then(function(data) { + if (push) { + history.pushState(_this3.transition, null, href); + } + var parser = new DOMParser(); + _this3.data = parser.parseFromString(data, "text/html"); + _this3.newContainer = _this3.data.querySelector(container); + _this3.newContainer.classList.add("is-new"); + _this3.parentNewContainer = _this3.newContainer.parentNode; + _this3.hideContainer(); + _this3.parentContainer.insertBefore(_this3.newContainer, _this3.oldContainer); + _this3.isInserted = true; + _this3.setSvgs(); + _this3.isLoaded = true; + if (_this3.isEntered) { + _this3.transitionContainers(); + } + _this3.loadEls(_this3.newContainer); + _this3.isLoading = false; + })["catch"](function(err) { + window.location = href; + }); + } + }, { + key: "transitionContainers", + value: function transitionContainers() { + var _this4 = this; + this.setAttributes(); + this.showContainer(); + this.setLoaded(); + setTimeout(function() { + _this4.removeContainer(); + _this4.setReady(); + }, this.exitDelay); + } + }, { + key: "setSvgs", + value: function setSvgs() { + if (this.isChrome) { + var svgs = this.newContainer.querySelectorAll("use"); + if (svgs.length) { + svgs.forEach(function(svg) { + var xhref = svg.getAttribute("xlink:href"); + if (xhref) { + svg.parentNode.innerHTML = ''; + } else { + var href = svg.getAttribute("href"); + if (href) + svg.parentNode.innerHTML = ''; + } + }); + } + } + } + }, { + key: "setAttributes", + value: function setAttributes() { + var _this5 = this; + var title = this.data.getElementsByTagName("title")[0]; + var newDesc = this.data.head.querySelector('meta[name="description"]'); + var oldDesc = document.head.querySelector('meta[name="description"]'); + var container; + var newContainer; + if (this.subContainer) { + newContainer = this.parentNewContainer; + container = document.querySelector(this.transitionContainer).parentNode; + } else { + newContainer = this.data.querySelector("html"); + container = document.querySelector("html"); + } + var datas = Object.assign({}, newContainer.dataset); + if (title) + document.title = title.innerText; + if (oldDesc && newDesc) + oldDesc.setAttribute("content", newDesc.getAttribute("content")); + if (datas) { + Object.entries(datas).forEach(function(_ref) { + var _ref2 = _slicedToArray2(_ref, 2), key = _ref2[0], val = _ref2[1]; + container.setAttribute("data-" + _this5.toDash(key), val); + }); + } + } + }, { + key: "toDash", + value: function toDash(str) { + return str.split(/(?=[A-Z])/).join("-").toLowerCase(); + } + }, { + key: "hideContainer", + value: function hideContainer() { + this.newContainer.style.visibility = "hidden"; + this.newContainer.style.height = 0; + this.newContainer.style.overflow = "hidden"; + } + }, { + key: "showContainer", + value: function showContainer() { + this.newContainer.style.visibility = ""; + this.newContainer.style.height = ""; + this.newContainer.style.overflow = ""; + } + }, { + key: "loadEls", + value: function loadEls(container) { + var _this6 = this; + var promises = []; + this.loadAttributes.forEach(function(attr) { + var data = "data-" + _this6.name + "-" + attr; + var els = container.querySelectorAll("[" + data + "]"); + if (els.length) { + els.forEach(function(el) { + var elData = el.getAttribute(data); + el.setAttribute(attr, elData); + if (attr == "src" || attr == "srcset") { + var promise = new Promise(function(resolve) { + el.onload = function() { + return resolve(el); + }; + }); + promises.push(promise); + } + }); + } + }); + Promise.all(promises).then(function(val) { + var imagesEvent = new Event(_this6.namespace + "images"); + window.dispatchEvent(imagesEvent); + }); + } + }, { + key: "setLoaded", + value: function setLoaded() { + var _this7 = this; + this.classContainer.classList.remove(this.loadingClass); + setTimeout(function() { + _this7.classContainer.classList.add(_this7.loadedClass); + }, this.loadedDelay); + var loadedEvent = new Event(this.namespace + "loaded"); + window.dispatchEvent(loadedEvent); + } + }, { + key: "removeContainer", + value: function removeContainer() { + this.parentContainer.removeChild(this.oldContainer); + this.newContainer.classList.remove("is-new"); + this.isInserted = false; + } + }, { + key: "setReady", + value: function setReady() { + this.classContainer.classList.add(this.readyClass); + var readyEvent = new Event(this.namespace + "ready"); + window.dispatchEvent(readyEvent); + } + }, { + key: "on", + value: function on(event, func) { + var _this8 = this; + window.addEventListener(this.namespace + event, function() { + switch (event) { + case "loading": + return func(_this8.transition, _this8.oldContainer); + case "loaded": + return func(_this8.transition, _this8.oldContainer, _this8.newContainer); + case "ready": + return func(_this8.transition, _this8.newContainer); + default: + return func(); + } + }, false); + } + }]); + return _default3; + }(); + var main_esm_default2 = _default2; + + // assets/scripts/modules/Load.js + var Load_default = class extends _default { + constructor(m) { + super(m); + } + init() { + const load = new main_esm_default2({ + enterDelay: 0, + transitions: { + customTransition: {} + } + }); + load.on("loaded", (transition, oldContainer, newContainer) => { + this.call("destroy", oldContainer, "app"); + this.call("update", newContainer, "app"); + }); + } + }; + + // assets/scripts/utils/image.js + var getImageMetadata = ($img) => ({ + url: $img.src, + width: $img.naturalWidth, + height: $img.naturalHeight, + ratio: $img.naturalWidth / $img.naturalHeight + }); + var loadImage = (url, options = {}) => { + return new Promise((resolve, reject) => { + const $img = new Image(); + if (options.crossOrigin) { + $img.crossOrigin = options.crossOrigin; + } + const loadCallback = () => { + resolve(__spreadValues({ + element: $img + }, getImageMetadata($img))); + }; + if ($img.decode) { + $img.src = url; + $img.decode().then(loadCallback).catch((e3) => { + reject(e3); + }); + } else { + $img.onload = loadCallback; + $img.onerror = (e3) => { + reject(e3); + }; + $img.src = url; + } + }); + }; + var LAZY_LOADED_IMAGES = []; + var lazyLoadImage = ($el, url, callback) => __async(void 0, null, function* () { + let src = url ? url : $el.dataset.src; + let loadedImage = LAZY_LOADED_IMAGES.find((image) => image.url === src); + if (!loadedImage) { + loadedImage = yield loadImage(src); + if (!loadedImage.url) { + return; + } + LAZY_LOADED_IMAGES.push(loadedImage); + } + if ($el.src === src) { + return; + } + if ($el.tagName === "IMG") { + $el.src = loadedImage.url; + } else { + $el.style.backgroundImage = `url(${loadedImage.url})`; + } + requestAnimationFrame(() => { + let lazyParent = $el.closest(`.${CSS_CLASS.LAZY_CONTAINER}`); + if (lazyParent) { + lazyParent.classList.add(CSS_CLASS.LAZY_LOADED); + lazyParent.style.backgroundImage = ""; + } + $el.classList.add(CSS_CLASS.LAZY_LOADED); + callback == null ? void 0 : callback(); + }); + }); + + // node_modules/@studio-freight/lenis/dist/lenis.modern.mjs + function t() { + return t = Object.assign ? Object.assign.bind() : function(t2) { + for (var i3 = 1; i3 < arguments.length; i3++) { + var e3 = arguments[i3]; + for (var s3 in e3) + Object.prototype.hasOwnProperty.call(e3, s3) && (t2[s3] = e3[s3]); + } + return t2; + }, t.apply(this, arguments); + } + function i(t2, i3, e3) { + return Math.max(t2, Math.min(i3, e3)); + } + var e = class { + advance(t2) { + var e3; + if (!this.isRunning) + return; + let s3 = false; + if (this.lerp) + this.value = (o3 = this.value, n3 = this.to, (1 - (r3 = 1 - Math.exp(-60 * this.lerp * t2))) * o3 + r3 * n3), Math.round(this.value) === this.to && (this.value = this.to, s3 = true); + else { + this.currentTime += t2; + const e4 = i(0, this.currentTime / this.duration, 1); + s3 = e4 >= 1; + const o4 = s3 ? 1 : this.easing(e4); + this.value = this.from + (this.to - this.from) * o4; + } + var o3, n3, r3; + null == (e3 = this.onUpdate) || e3.call(this, this.value, s3), s3 && this.stop(); + } + stop() { + this.isRunning = false; + } + fromTo(t2, i3, { lerp: e3 = 0.1, duration: s3 = 1, easing: o3 = (t3) => t3, onStart: n3, onUpdate: r3 }) { + this.from = this.value = t2, this.to = i3, this.lerp = e3, this.duration = s3, this.easing = o3, this.currentTime = 0, this.isRunning = true, null == n3 || n3(), this.onUpdate = r3; + } + }; + var s = class { + constructor({ wrapper: t2, content: i3, autoResize: e3 = true } = {}) { + if (this.resize = () => { + this.onWrapperResize(), this.onContentResize(); + }, this.onWrapperResize = () => { + this.wrapper === window ? (this.width = window.innerWidth, this.height = window.innerHeight) : (this.width = this.wrapper.clientWidth, this.height = this.wrapper.clientHeight); + }, this.onContentResize = () => { + this.scrollHeight = this.content.scrollHeight, this.scrollWidth = this.content.scrollWidth; + }, this.wrapper = t2, this.content = i3, e3) { + const t3 = function(t4, i4) { + let e4; + return function() { + let i5 = arguments, s3 = this; + clearTimeout(e4), e4 = setTimeout(function() { + t4.apply(s3, i5); + }, 250); + }; + }(this.resize); + this.wrapper !== window && (this.wrapperResizeObserver = new ResizeObserver(t3), this.wrapperResizeObserver.observe(this.wrapper)), this.contentResizeObserver = new ResizeObserver(t3), this.contentResizeObserver.observe(this.content); + } + this.resize(); + } + destroy() { + var t2, i3; + null == (t2 = this.wrapperResizeObserver) || t2.disconnect(), null == (i3 = this.contentResizeObserver) || i3.disconnect(); + } + get limit() { + return { x: this.scrollWidth - this.width, y: this.scrollHeight - this.height }; + } + }; + var o = class { + constructor() { + this.events = {}; + } + emit(t2, ...i3) { + let e3 = this.events[t2] || []; + for (let t3 = 0, s3 = e3.length; t3 < s3; t3++) + e3[t3](...i3); + } + on(t2, i3) { + var e3; + return (null == (e3 = this.events[t2]) ? void 0 : e3.push(i3)) || (this.events[t2] = [i3]), () => { + var e4; + this.events[t2] = null == (e4 = this.events[t2]) ? void 0 : e4.filter((t3) => i3 !== t3); + }; + } + off(t2, i3) { + var e3; + this.events[t2] = null == (e3 = this.events[t2]) ? void 0 : e3.filter((t3) => i3 !== t3); + } + destroy() { + this.events = {}; + } + }; + var n = class { + constructor(t2, { wheelMultiplier: e3 = 1, touchMultiplier: s3 = 2, normalizeWheel: n3 = false }) { + this.onTouchStart = (t3) => { + const { clientX: i3, clientY: e4 } = t3.targetTouches ? t3.targetTouches[0] : t3; + this.touchStart.x = i3, this.touchStart.y = e4, this.lastDelta = { x: 0, y: 0 }; + }, this.onTouchMove = (t3) => { + const { clientX: i3, clientY: e4 } = t3.targetTouches ? t3.targetTouches[0] : t3, s4 = -(i3 - this.touchStart.x) * this.touchMultiplier, o3 = -(e4 - this.touchStart.y) * this.touchMultiplier; + this.touchStart.x = i3, this.touchStart.y = e4, this.lastDelta = { x: s4, y: o3 }, this.emitter.emit("scroll", { deltaX: s4, deltaY: o3, event: t3 }); + }, this.onTouchEnd = (t3) => { + this.emitter.emit("scroll", { deltaX: this.lastDelta.x, deltaY: this.lastDelta.y, event: t3 }); + }, this.onWheel = (t3) => { + let { deltaX: e4, deltaY: s4 } = t3; + this.normalizeWheel && (e4 = i(-100, e4, 100), s4 = i(-100, s4, 100)), e4 *= this.wheelMultiplier, s4 *= this.wheelMultiplier, this.emitter.emit("scroll", { deltaX: e4, deltaY: s4, event: t3 }); + }, this.element = t2, this.wheelMultiplier = e3, this.touchMultiplier = s3, this.normalizeWheel = n3, this.touchStart = { x: null, y: null }, this.emitter = new o(), this.element.addEventListener("wheel", this.onWheel, { passive: false }), this.element.addEventListener("touchstart", this.onTouchStart, { passive: false }), this.element.addEventListener("touchmove", this.onTouchMove, { passive: false }), this.element.addEventListener("touchend", this.onTouchEnd, { passive: false }); + } + on(t2, i3) { + return this.emitter.on(t2, i3); + } + destroy() { + this.emitter.destroy(), this.element.removeEventListener("wheel", this.onWheel, { passive: false }), this.element.removeEventListener("touchstart", this.onTouchStart, { passive: false }), this.element.removeEventListener("touchmove", this.onTouchMove, { passive: false }), this.element.removeEventListener("touchend", this.onTouchEnd, { passive: false }); + } + }; + var r = class { + constructor({ wrapper: i3 = window, content: r3 = document.documentElement, wheelEventsTarget: l2 = i3, eventsTarget: h2 = l2, smoothWheel: a2 = true, smoothTouch: c2 = false, syncTouch: u = false, syncTouchLerp: p = 0.1, __iosNoInertiaSyncTouchLerp: d = 0.4, touchInertiaMultiplier: m = 35, duration: g, easing: v = (t2) => Math.min(1, 1.001 - Math.pow(2, -10 * t2)), lerp: S = !g && 0.1, infinite: w = false, orientation: f = "vertical", gestureOrientation: y = "vertical", touchMultiplier: T = 1, wheelMultiplier: z = 1, normalizeWheel: M = false, autoResize: L = true } = {}) { + this.onVirtualScroll = ({ deltaX: i4, deltaY: e3, event: s3 }) => { + if (s3.ctrlKey) + return; + const o3 = s3.type.includes("touch"), n3 = s3.type.includes("wheel"); + if ("both" === this.options.gestureOrientation && 0 === i4 && 0 === e3 || "vertical" === this.options.gestureOrientation && 0 === e3 || "horizontal" === this.options.gestureOrientation && 0 === i4 || o3 && "vertical" === this.options.gestureOrientation && 0 === this.scroll && !this.options.infinite && e3 <= 0) + return; + let r4 = s3.composedPath(); + if (r4 = r4.slice(0, r4.indexOf(this.rootElement)), r4.find((t2) => { + var i5; + return (null == t2.hasAttribute ? void 0 : t2.hasAttribute("data-lenis-prevent")) || o3 && (null == t2.hasAttribute ? void 0 : t2.hasAttribute("data-lenis-prevent-touch")) || n3 && (null == t2.hasAttribute ? void 0 : t2.hasAttribute("data-lenis-prevent-wheel")) || (null == (i5 = t2.classList) ? void 0 : i5.contains("lenis")); + })) + return; + if (this.isStopped || this.isLocked) + return void s3.preventDefault(); + if (this.isSmooth = (this.options.smoothTouch || this.options.syncTouch) && o3 || this.options.smoothWheel && n3, !this.isSmooth) + return this.isScrolling = false, void this.animate.stop(); + s3.preventDefault(); + let l3 = e3; + "both" === this.options.gestureOrientation ? l3 = Math.abs(e3) > Math.abs(i4) ? e3 : i4 : "horizontal" === this.options.gestureOrientation && (l3 = i4); + const h3 = o3 && this.options.syncTouch, a3 = o3 && "touchend" === s3.type && Math.abs(l3) > 1; + a3 && (l3 = this.velocity * this.options.touchInertiaMultiplier), this.scrollTo(this.targetScroll + l3, t({ programmatic: false }, h3 && { lerp: a3 ? this.syncTouchLerp : this.options.__iosNoInertiaSyncTouchLerp })); + }, this.onScroll = () => { + if (!this.isScrolling) { + const t2 = this.animatedScroll; + this.animatedScroll = this.targetScroll = this.actualScroll, this.velocity = 0, this.direction = Math.sign(this.animatedScroll - t2), this.emit(); + } + }, window.lenisVersion = "1.0.27", i3 !== document.documentElement && i3 !== document.body || (i3 = window), this.options = { wrapper: i3, content: r3, wheelEventsTarget: l2, eventsTarget: h2, smoothWheel: a2, smoothTouch: c2, syncTouch: u, syncTouchLerp: p, __iosNoInertiaSyncTouchLerp: d, touchInertiaMultiplier: m, duration: g, easing: v, lerp: S, infinite: w, gestureOrientation: y, orientation: f, touchMultiplier: T, wheelMultiplier: z, normalizeWheel: M, autoResize: L }, this.animate = new e(), this.emitter = new o(), this.dimensions = new s({ wrapper: i3, content: r3, autoResize: L }), this.toggleClass("lenis", true), this.velocity = 0, this.isLocked = false, this.isStopped = false, this.isSmooth = u || a2 || c2, this.isScrolling = false, this.targetScroll = this.animatedScroll = this.actualScroll, this.options.wrapper.addEventListener("scroll", this.onScroll, { passive: false }), this.virtualScroll = new n(h2, { touchMultiplier: T, wheelMultiplier: z, normalizeWheel: M }), this.virtualScroll.on("scroll", this.onVirtualScroll); + } + destroy() { + this.emitter.destroy(), this.options.wrapper.removeEventListener("scroll", this.onScroll, { passive: false }), this.virtualScroll.destroy(), this.dimensions.destroy(), this.toggleClass("lenis", false), this.toggleClass("lenis-smooth", false), this.toggleClass("lenis-scrolling", false), this.toggleClass("lenis-stopped", false), this.toggleClass("lenis-locked", false); + } + on(t2, i3) { + return this.emitter.on(t2, i3); + } + off(t2, i3) { + return this.emitter.off(t2, i3); + } + setScroll(t2) { + this.isHorizontal ? this.rootElement.scrollLeft = t2 : this.rootElement.scrollTop = t2; + } + resize() { + this.dimensions.resize(); + } + emit() { + this.emitter.emit("scroll", this); + } + reset() { + this.isLocked = false, this.isScrolling = false, this.velocity = 0, this.animate.stop(); + } + start() { + this.isStopped = false, this.reset(); + } + stop() { + this.isStopped = true, this.animate.stop(), this.reset(); + } + raf(t2) { + const i3 = t2 - (this.time || t2); + this.time = t2, this.animate.advance(1e-3 * i3); + } + scrollTo(t2, { offset: e3 = 0, immediate: s3 = false, lock: o3 = false, duration: n3 = this.options.duration, easing: r3 = this.options.easing, lerp: l2 = !n3 && this.options.lerp, onComplete: h2 = null, force: a2 = false, programmatic: c2 = true } = {}) { + if (!this.isStopped && !this.isLocked || a2) { + if (["top", "left", "start"].includes(t2)) + t2 = 0; + else if (["bottom", "right", "end"].includes(t2)) + t2 = this.limit; + else { + var u; + let i3; + if ("string" == typeof t2 ? i3 = document.querySelector(t2) : null != (u = t2) && u.nodeType && (i3 = t2), i3) { + if (this.options.wrapper !== window) { + const t3 = this.options.wrapper.getBoundingClientRect(); + e3 -= this.isHorizontal ? t3.left : t3.top; + } + const s4 = i3.getBoundingClientRect(); + t2 = (this.isHorizontal ? s4.left : s4.top) + this.animatedScroll; + } + } + if ("number" == typeof t2) { + if (t2 += e3, t2 = Math.round(t2), this.options.infinite ? c2 && (this.targetScroll = this.animatedScroll = this.scroll) : t2 = i(0, t2, this.limit), s3) + return this.animatedScroll = this.targetScroll = t2, this.setScroll(this.scroll), this.reset(), void (null == h2 || h2(this)); + if (!c2) { + if (t2 === this.targetScroll) + return; + this.targetScroll = t2; + } + this.animate.fromTo(this.animatedScroll, t2, { duration: n3, easing: r3, lerp: l2, onStart: () => { + o3 && (this.isLocked = true), this.isScrolling = true; + }, onUpdate: (t3, i3) => { + this.isScrolling = true, this.velocity = t3 - this.animatedScroll, this.direction = Math.sign(this.velocity), this.animatedScroll = t3, this.setScroll(this.scroll), c2 && (this.targetScroll = t3), i3 || this.emit(), i3 && requestAnimationFrame(() => { + this.reset(), this.emit(), null == h2 || h2(this); + }); + } }); + } + } + } + get rootElement() { + return this.options.wrapper === window ? this.options.content : this.options.wrapper; + } + get limit() { + return this.dimensions.limit[this.isHorizontal ? "x" : "y"]; + } + get isHorizontal() { + return "horizontal" === this.options.orientation; + } + get actualScroll() { + return this.isHorizontal ? this.rootElement.scrollLeft : this.rootElement.scrollTop; + } + get scroll() { + return this.options.infinite ? (this.animatedScroll % (t2 = this.limit) + t2) % t2 : this.animatedScroll; + var t2; + } + get progress() { + return 0 === this.limit ? 1 : this.scroll / this.limit; + } + get isSmooth() { + return this.__isSmooth; + } + set isSmooth(t2) { + this.__isSmooth !== t2 && (this.__isSmooth = t2, this.toggleClass("lenis-smooth", t2)); + } + get isScrolling() { + return this.__isScrolling; + } + set isScrolling(t2) { + this.__isScrolling !== t2 && (this.__isScrolling = t2, this.toggleClass("lenis-scrolling", t2)); + } + get isStopped() { + return this.__isStopped; + } + set isStopped(t2) { + this.__isStopped !== t2 && (this.__isStopped = t2, this.toggleClass("lenis-stopped", t2)); + } + get isLocked() { + return this.__isLocked; + } + set isLocked(t2) { + this.__isLocked !== t2 && (this.__isLocked = t2, this.toggleClass("lenis-locked", t2)); + } + get className() { + let t2 = "lenis"; + return this.isStopped && (t2 += " lenis-stopped"), this.isLocked && (t2 += " lenis-locked"), this.isScrolling && (t2 += " lenis-scrolling"), this.isSmooth && (t2 += " lenis-smooth"), t2; + } + toggleClass(t2, i3) { + this.rootElement.classList.toggle(t2, i3), this.emitter.emit("className change", this); + } + }; + + // node_modules/locomotive-scroll/dist/locomotive-scroll.modern.mjs + function s2() { + return s2 = Object.assign ? Object.assign.bind() : function(t2) { + for (var s3 = 1; s3 < arguments.length; s3++) { + var e3 = arguments[s3]; + for (var i3 in e3) + Object.prototype.hasOwnProperty.call(e3, i3) && (t2[i3] = e3[i3]); + } + return t2; + }, s2.apply(this, arguments); + } + var e2 = class { + constructor({ scrollElements: t2, rootMargin: s3 = "-1px -1px -1px -1px", IORaf: e3 }) { + this.scrollElements = void 0, this.rootMargin = void 0, this.IORaf = void 0, this.observer = void 0, this.scrollElements = t2, this.rootMargin = s3, this.IORaf = e3, this._init(); + } + _init() { + this.observer = new IntersectionObserver((t2) => { + t2.forEach((t3) => { + const s3 = this.scrollElements.find((s4) => s4.$el === t3.target); + t3.isIntersecting ? (s3 && (s3.isAlreadyIntersected = true), this._setInview(t3)) : s3 && s3.isAlreadyIntersected && this._setOutOfView(t3); + }); + }, { rootMargin: this.rootMargin }); + for (const t2 of this.scrollElements) + this.observe(t2.$el); + } + destroy() { + this.observer.disconnect(); + } + observe(t2) { + t2 && this.observer.observe(t2); + } + unobserve(t2) { + t2 && this.observer.unobserve(t2); + } + _setInview(t2) { + const s3 = this.scrollElements.find((s4) => s4.$el === t2.target); + this.IORaf && (null == s3 || s3.setInteractivityOn()), !this.IORaf && (null == s3 || s3.setInview()); + } + _setOutOfView(t2) { + const s3 = this.scrollElements.find((s4) => s4.$el === t2.target); + this.IORaf && (null == s3 || s3.setInteractivityOff()), !this.IORaf && (null == s3 || s3.setOutOfView()), null != s3 && s3.attributes.scrollRepeat || this.IORaf || this.unobserve(t2.target); + } + }; + function i2(t2, s3, e3, i3, r3) { + return e3 + ((r3 - t2) / (s3 - t2) * (i3 - e3) || 0); + } + function r2(t2, s3) { + return t2.reduce((t3, e3) => Math.abs(e3 - s3) < Math.abs(t3 - s3) ? e3 : t3); + } + var l = class { + constructor({ $el: t2, id: s3, modularInstance: e3, subscribeElementUpdateFn: i3, unsubscribeElementUpdateFn: r3, needRaf: l2, scrollOrientation: n3 }) { + var o3, a2, c2, h2, d; + this.$el = void 0, this.id = void 0, this.needRaf = void 0, this.attributes = void 0, this.scrollOrientation = void 0, this.isAlreadyIntersected = void 0, this.intersection = void 0, this.metrics = void 0, this.currentScroll = void 0, this.translateValue = void 0, this.progress = void 0, this.lastProgress = void 0, this.modularInstance = void 0, this.progressModularModules = void 0, this.isInview = void 0, this.isInteractive = void 0, this.isInFold = void 0, this.isFirstResize = void 0, this.subscribeElementUpdateFn = void 0, this.unsubscribeElementUpdateFn = void 0, this.$el = t2, this.id = s3, this.needRaf = l2, this.scrollOrientation = n3, this.modularInstance = e3, this.subscribeElementUpdateFn = i3, this.unsubscribeElementUpdateFn = r3, this.attributes = { scrollClass: null != (o3 = this.$el.dataset.scrollClass) ? o3 : "is-inview", scrollOffset: null != (a2 = this.$el.dataset.scrollOffset) ? a2 : "0,0", scrollPosition: null != (c2 = this.$el.dataset.scrollPosition) ? c2 : "start,end", scrollModuleProgress: null != this.$el.dataset.scrollModuleProgress, scrollCssProgress: null != this.$el.dataset.scrollCssProgress, scrollEventProgress: null != (h2 = this.$el.dataset.scrollEventProgress) ? h2 : null, scrollSpeed: null != this.$el.dataset.scrollSpeed ? parseFloat(this.$el.dataset.scrollSpeed) : null, scrollRepeat: null != this.$el.dataset.scrollRepeat, scrollCall: null != (d = this.$el.dataset.scrollCall) ? d : null, scrollCallSelf: null != this.$el.dataset.scrollCallSelf, scrollIgnoreFold: null != this.$el.dataset.scrollIgnoreFold, scrollEnableTouchSpeed: null != this.$el.dataset.scrollEnableTouchSpeed }, this.intersection = { start: 0, end: 0 }, this.metrics = { offsetStart: 0, offsetEnd: 0, bcr: {} }, this.currentScroll = "vertical" === this.scrollOrientation ? window.scrollY : window.scrollX, this.translateValue = 0, this.progress = 0, this.lastProgress = null, this.progressModularModules = [], this.isInview = false, this.isInteractive = false, this.isAlreadyIntersected = false, this.isInFold = false, this.isFirstResize = true, this._init(); + } + _init() { + this.needRaf && (this.modularInstance && this.attributes.scrollModuleProgress && this._getProgressModularModules(), this._resize()); + } + onResize({ currentScroll: t2 }) { + this.currentScroll = t2, this._resize(); + } + onRender({ currentScroll: t2, smooth: s3 }) { + const e3 = "vertical" === this.scrollOrientation ? window.innerHeight : window.innerWidth; + if (this.currentScroll = t2, this._computeProgress(), this.attributes.scrollSpeed && !isNaN(this.attributes.scrollSpeed)) + if (this.attributes.scrollEnableTouchSpeed || s3) { + if (this.isInFold) { + const t3 = Math.max(0, this.progress); + this.translateValue = t3 * e3 * this.attributes.scrollSpeed * -1; + } else { + const t3 = i2(0, 1, -1, 1, this.progress); + this.translateValue = t3 * e3 * this.attributes.scrollSpeed * -1; + } + this.$el.style.transform = "vertical" === this.scrollOrientation ? `translate3d(0, ${this.translateValue}px, 0)` : `translate3d(${this.translateValue}px, 0, 0)`; + } else + this.translateValue && (this.$el.style.transform = "translate3d(0, 0, 0)"), this.translateValue = 0; + } + setInview() { + if (this.isInview) + return; + this.isInview = true, this.$el.classList.add(this.attributes.scrollClass); + const t2 = this._getScrollCallFrom(); + this.attributes.scrollCall && this._dispatchCall("enter", t2); + } + setOutOfView() { + if (!this.isInview || !this.attributes.scrollRepeat) + return; + this.isInview = false, this.$el.classList.remove(this.attributes.scrollClass); + const t2 = this._getScrollCallFrom(); + this.attributes.scrollCall && this._dispatchCall("leave", t2); + } + setInteractivityOn() { + this.isInteractive || (this.isInteractive = true, this.subscribeElementUpdateFn(this)); + } + setInteractivityOff() { + this.isInteractive && (this.isInteractive = false, this.unsubscribeElementUpdateFn(this), null != this.lastProgress && this._computeProgress(r2([0, 1], this.lastProgress))); + } + _resize() { + this.metrics.bcr = this.$el.getBoundingClientRect(), this._computeMetrics(), this._computeIntersection(), this.isFirstResize && (this.isFirstResize = false, this.isInFold && this.setInview()); + } + _computeMetrics() { + const { top: t2, left: s3, height: e3, width: i3 } = this.metrics.bcr, r3 = "vertical" === this.scrollOrientation ? window.innerHeight : window.innerWidth, l2 = "vertical" === this.scrollOrientation ? e3 : i3; + this.metrics.offsetStart = this.currentScroll + ("vertical" === this.scrollOrientation ? t2 : s3) - this.translateValue, this.metrics.offsetEnd = this.metrics.offsetStart + l2, this.isInFold = this.metrics.offsetStart < r3 && !this.attributes.scrollIgnoreFold; + } + _computeIntersection() { + const t2 = "vertical" === this.scrollOrientation ? window.innerHeight : window.innerWidth, s3 = "vertical" === this.scrollOrientation ? this.metrics.bcr.height : this.metrics.bcr.width, e3 = this.attributes.scrollOffset.split(","), i3 = null != e3[0] ? e3[0].trim() : "0", r3 = null != e3[1] ? e3[1].trim() : "0", l2 = this.attributes.scrollPosition.split(","); + let n3 = null != l2[0] ? l2[0].trim() : "start"; + const o3 = null != l2[1] ? l2[1].trim() : "end", a2 = i3.includes("%") ? t2 * parseInt(i3.replace("%", "").trim()) * 0.01 : parseInt(i3), c2 = r3.includes("%") ? t2 * parseInt(r3.replace("%", "").trim()) * 0.01 : parseInt(r3); + switch (this.isInFold && (n3 = "fold"), n3) { + case "start": + default: + this.intersection.start = this.metrics.offsetStart - t2 + a2; + break; + case "middle": + this.intersection.start = this.metrics.offsetStart - t2 + a2 + 0.5 * s3; + break; + case "end": + this.intersection.start = this.metrics.offsetStart - t2 + a2 + s3; + break; + case "fold": + this.intersection.start = 0; + } + switch (o3) { + case "start": + this.intersection.end = this.metrics.offsetStart - c2; + break; + case "middle": + this.intersection.end = this.metrics.offsetStart - c2 + 0.5 * s3; + break; + default: + this.intersection.end = this.metrics.offsetStart - c2 + s3; + } + if (this.intersection.end <= this.intersection.start) + switch (o3) { + case "start": + default: + this.intersection.end = this.intersection.start + 1; + break; + case "middle": + this.intersection.end = this.intersection.start + 0.5 * s3; + break; + case "end": + this.intersection.end = this.intersection.start + s3; + } + } + _computeProgress(t2) { + const s3 = null != t2 ? t2 : (e3 = i2(this.intersection.start, this.intersection.end, 0, 1, this.currentScroll)) < 0 ? 0 : e3 > 1 ? 1 : e3; + var e3; + if (this.progress = s3, s3 != this.lastProgress) { + if (this.lastProgress = s3, this.attributes.scrollCssProgress && this._setCssProgress(s3), this.attributes.scrollEventProgress && this._setCustomEventProgress(s3), this.attributes.scrollModuleProgress) + for (const t3 of this.progressModularModules) + this.modularInstance && this.modularInstance.call("onScrollProgress", s3, t3.moduleName, t3.moduleId); + s3 > 0 && s3 < 1 && this.setInview(), 0 === s3 && this.setOutOfView(), 1 === s3 && this.setOutOfView(); + } + } + _setCssProgress(t2 = 0) { + this.$el.style.setProperty("--progress", t2.toString()); + } + _setCustomEventProgress(t2 = 0) { + const s3 = this.attributes.scrollEventProgress; + if (!s3) + return; + const e3 = new CustomEvent(s3, { detail: { target: this.$el, progress: t2 } }); + window.dispatchEvent(e3); + } + _getProgressModularModules() { + if (!this.modularInstance) + return; + const t2 = Object.keys(this.$el.dataset).filter((t3) => t3.includes("module")), s3 = Object.entries(this.modularInstance.modules); + if (t2.length) + for (const e3 of t2) { + const t3 = this.$el.dataset[e3]; + if (!t3) + return; + for (const e4 of s3) { + const [s4, i3] = e4; + t3 in i3 && this.progressModularModules.push({ moduleName: s4, moduleId: t3 }); + } + } + } + _getScrollCallFrom() { + const t2 = r2([this.intersection.start, this.intersection.end], this.currentScroll); + return this.intersection.start === t2 ? "start" : "end"; + } + _dispatchCall(t2, s3) { + var e3, i3; + const r3 = null == (e3 = this.attributes.scrollCall) ? void 0 : e3.split(","), l2 = null == (i3 = this.attributes) ? void 0 : i3.scrollCallSelf; + if (r3 && r3.length > 1) { + var n3; + const [e4, i4, o3] = r3; + let a2; + a2 = l2 ? this.$el.dataset[`module${i4.trim()}`] : o3, this.modularInstance && this.modularInstance.call(e4.trim(), { target: this.$el, way: t2, from: s3 }, i4.trim(), null == (n3 = a2) ? void 0 : n3.trim()); + } else if (r3) { + const [e4] = r3, i4 = new CustomEvent(e4, { detail: { target: this.$el, way: t2, from: s3 } }); + window.dispatchEvent(i4); + } + } + }; + var n2 = ["scrollOffset", "scrollPosition", "scrollModuleProgress", "scrollCssProgress", "scrollEventProgress", "scrollSpeed"]; + var o2 = class { + constructor({ $el: t2, modularInstance: s3, triggerRootMargin: e3, rafRootMargin: i3, scrollOrientation: r3 }) { + this.$scrollContainer = void 0, this.modularInstance = void 0, this.triggerRootMargin = void 0, this.rafRootMargin = void 0, this.scrollElements = void 0, this.triggeredScrollElements = void 0, this.RAFScrollElements = void 0, this.scrollElementsToUpdate = void 0, this.IOTriggerInstance = void 0, this.IORafInstance = void 0, this.scrollOrientation = void 0, t2 ? (this.$scrollContainer = t2, this.modularInstance = s3, this.scrollOrientation = r3, this.triggerRootMargin = null != e3 ? e3 : "-1px -1px -1px -1px", this.rafRootMargin = null != i3 ? i3 : "100% 100% 100% 100%", this.scrollElements = [], this.triggeredScrollElements = [], this.RAFScrollElements = [], this.scrollElementsToUpdate = [], this._init()) : console.error("Please provide a DOM Element as scrollContainer"); + } + _init() { + const t2 = this.$scrollContainer.querySelectorAll("[data-scroll]"), s3 = Array.from(t2); + this._subscribeScrollElements(s3), this.IOTriggerInstance = new e2({ scrollElements: [...this.triggeredScrollElements], rootMargin: this.triggerRootMargin, IORaf: false }), this.IORafInstance = new e2({ scrollElements: [...this.RAFScrollElements], rootMargin: this.rafRootMargin, IORaf: true }); + } + destroy() { + this.IOTriggerInstance.destroy(), this.IORafInstance.destroy(), this._unsubscribeAllScrollElements(); + } + onResize({ currentScroll: t2 }) { + for (const s3 of this.RAFScrollElements) + s3.onResize({ currentScroll: t2 }); + } + onRender({ currentScroll: t2, smooth: s3 }) { + for (const e3 of this.scrollElementsToUpdate) + e3.onRender({ currentScroll: t2, smooth: s3 }); + } + removeScrollElements(t2) { + const s3 = t2.querySelectorAll("[data-scroll]"); + if (s3.length) { + for (let t3 = 0; t3 < this.triggeredScrollElements.length; t3++) { + const e3 = this.triggeredScrollElements[t3]; + Array.from(s3).indexOf(e3.$el) > -1 && (this.IOTriggerInstance.unobserve(e3.$el), this.triggeredScrollElements.splice(t3, 1)); + } + for (let t3 = 0; t3 < this.RAFScrollElements.length; t3++) { + const e3 = this.RAFScrollElements[t3]; + Array.from(s3).indexOf(e3.$el) > -1 && (this.IORafInstance.unobserve(e3.$el), this.RAFScrollElements.splice(t3, 1)); + } + s3.forEach((t3) => { + const s4 = this.scrollElementsToUpdate.find((s5) => s5.$el === t3), e3 = this.scrollElements.find((s5) => s5.$el === t3); + s4 && this._unsubscribeElementUpdate(s4), e3 && (this.scrollElements = this.scrollElements.filter((t4) => t4.id != e3.id)); + }); + } + } + addScrollElements(t2) { + const s3 = t2.querySelectorAll("[data-scroll]"), e3 = []; + this.scrollElements.forEach((t3) => { + e3.push(t3.id); + }); + const i3 = Math.max(...e3) + 1, r3 = Array.from(s3); + this._subscribeScrollElements(r3, i3, true); + } + _subscribeScrollElements(t2, s3 = 0, e3 = false) { + for (let i3 = 0; i3 < t2.length; i3++) { + const r3 = t2[i3], n3 = this._checkRafNeeded(r3), o3 = new l({ $el: r3, id: s3 + i3, scrollOrientation: this.scrollOrientation, modularInstance: this.modularInstance, subscribeElementUpdateFn: this._subscribeElementUpdate.bind(this), unsubscribeElementUpdateFn: this._unsubscribeElementUpdate.bind(this), needRaf: n3 }); + this.scrollElements.push(o3), n3 ? (this.RAFScrollElements.push(o3), e3 && (this.IORafInstance.scrollElements.push(o3), this.IORafInstance.observe(o3.$el))) : (this.triggeredScrollElements.push(o3), e3 && (this.IOTriggerInstance.scrollElements.push(o3), this.IOTriggerInstance.observe(o3.$el))); + } + } + _unsubscribeAllScrollElements() { + this.scrollElements = [], this.RAFScrollElements = [], this.triggeredScrollElements = [], this.scrollElementsToUpdate = []; + } + _subscribeElementUpdate(t2) { + this.scrollElementsToUpdate.push(t2); + } + _unsubscribeElementUpdate(t2) { + this.scrollElementsToUpdate = this.scrollElementsToUpdate.filter((s3) => s3.id != t2.id); + } + _checkRafNeeded(t2) { + let s3 = [...n2]; + const e3 = (t3) => { + s3 = s3.filter((s4) => s4 != t3); + }; + if (t2.dataset.scrollOffset) { + if ("0,0" != t2.dataset.scrollOffset.split(",").map((t3) => t3.replace("%", "").trim()).join(",")) + return true; + e3("scrollOffset"); + } else + e3("scrollOffset"); + if (t2.dataset.scrollPosition) { + if ("top,bottom" != t2.dataset.scrollPosition.trim()) + return true; + e3("scrollPosition"); + } else + e3("scrollPosition"); + if (t2.dataset.scrollSpeed && !isNaN(parseFloat(t2.dataset.scrollSpeed))) + return true; + e3("scrollSpeed"); + for (const e4 of s3) + if (e4 in t2.dataset) + return true; + return false; + } + }; + var a = class { + constructor({ resizeElements: t2, resizeCallback: s3 = () => { + } }) { + this.$resizeElements = void 0, this.isFirstObserve = void 0, this.observer = void 0, this.resizeCallback = void 0, this.$resizeElements = t2, this.resizeCallback = s3, this.isFirstObserve = true, this._init(); + } + _init() { + this.observer = new ResizeObserver((t2) => { + var s3; + !this.isFirstObserve && (null == (s3 = this.resizeCallback) || s3.call(this)), this.isFirstObserve = false; + }); + for (const t2 of this.$resizeElements) + this.observer.observe(t2); + } + destroy() { + this.observer.disconnect(); + } + }; + var c = { wrapper: window, content: document.documentElement, eventsTarget: window, lerp: 0.1, duration: 0.75, orientation: "vertical", gestureOrientation: "vertical", smoothWheel: true, smoothTouch: false, syncTouch: false, syncTouchLerp: 0.1, touchInertiaMultiplier: 35, wheelMultiplier: 1, touchMultiplier: 2, normalizeWheel: false, autoResize: true, easing: (t2) => Math.min(1, 1.001 - Math.pow(2, -10 * t2)) }; + var h = class { + constructor({ lenisOptions: t2 = {}, modularInstance: e3, triggerRootMargin: i3, rafRootMargin: r3, autoResize: l2 = true, autoStart: n3 = true, scrollCallback: o3 = () => { + }, initCustomTicker: a2, destroyCustomTicker: h2 } = {}) { + this.rafPlaying = void 0, this.lenisInstance = void 0, this.coreInstance = void 0, this.lenisOptions = void 0, this.modularInstance = void 0, this.triggerRootMargin = void 0, this.rafRootMargin = void 0, this.rafInstance = void 0, this.autoResize = void 0, this.autoStart = void 0, this.ROInstance = void 0, this.initCustomTicker = void 0, this.destroyCustomTicker = void 0, this._onRenderBind = void 0, this._onResizeBind = void 0, this._onScrollToBind = void 0, this.lenisOptions = s2({}, c, t2), Object.assign(this, { lenisOptions: t2, modularInstance: e3, triggerRootMargin: i3, rafRootMargin: r3, autoResize: l2, autoStart: n3, scrollCallback: o3, initCustomTicker: a2, destroyCustomTicker: h2 }), this._onRenderBind = this._onRender.bind(this), this._onScrollToBind = this._onScrollTo.bind(this), this._onResizeBind = this._onResize.bind(this), this.rafPlaying = false, this._init(); + } + _init() { + var s3; + this.lenisInstance = new r({ wrapper: this.lenisOptions.wrapper, content: this.lenisOptions.content, eventsTarget: this.lenisOptions.eventsTarget, lerp: this.lenisOptions.lerp, duration: this.lenisOptions.duration, orientation: this.lenisOptions.orientation, gestureOrientation: this.lenisOptions.gestureOrientation, smoothWheel: this.lenisOptions.smoothWheel, smoothTouch: this.lenisOptions.smoothTouch, syncTouch: this.lenisOptions.syncTouch, syncTouchLerp: this.lenisOptions.syncTouchLerp, touchInertiaMultiplier: this.lenisOptions.touchInertiaMultiplier, wheelMultiplier: this.lenisOptions.wheelMultiplier, touchMultiplier: this.lenisOptions.touchMultiplier, normalizeWheel: this.lenisOptions.normalizeWheel, easing: this.lenisOptions.easing }), null == (s3 = this.lenisInstance) || s3.on("scroll", this.scrollCallback), document.documentElement.setAttribute("data-scroll-orientation", this.lenisInstance.options.orientation), requestAnimationFrame(() => { + this.coreInstance = new o2({ $el: this.lenisInstance.rootElement, modularInstance: this.modularInstance, triggerRootMargin: this.triggerRootMargin, rafRootMargin: this.rafRootMargin, scrollOrientation: this.lenisInstance.options.orientation }), this._bindEvents(), this.initCustomTicker && !this.destroyCustomTicker ? console.warn("initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble.") : !this.initCustomTicker && this.destroyCustomTicker && console.warn("destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble."), this.autoStart && this.start(); + }); + } + destroy() { + this.stop(), this._unbindEvents(), this.lenisInstance.destroy(), this.coreInstance.destroy(); + } + _bindEvents() { + this._bindScrollToEvents(), this.autoResize && ("ResizeObserver" in window ? this.ROInstance = new a({ resizeElements: [document.body], resizeCallback: this._onResizeBind }) : window.addEventListener("resize", this._onResizeBind)); + } + _unbindEvents() { + this._unbindScrollToEvents(), this.autoResize && ("ResizeObserver" in window ? this.ROInstance && this.ROInstance.destroy() : window.removeEventListener("resize", this._onResizeBind)); + } + _bindScrollToEvents(t2) { + const s3 = t2 || this.lenisInstance.rootElement, e3 = null == s3 ? void 0 : s3.querySelectorAll("[data-scroll-to]"); + (null == e3 ? void 0 : e3.length) && e3.forEach((t3) => { + t3.addEventListener("click", this._onScrollToBind, false); + }); + } + _unbindScrollToEvents(t2) { + const s3 = t2 || this.lenisInstance.rootElement, e3 = null == s3 ? void 0 : s3.querySelectorAll("[data-scroll-to]"); + (null == e3 ? void 0 : e3.length) && e3.forEach((t3) => { + t3.removeEventListener("click", this._onScrollToBind, false); + }); + } + _onResize() { + requestAnimationFrame(() => { + var t2; + null == (t2 = this.coreInstance) || t2.onResize({ currentScroll: this.lenisInstance.scroll }); + }); + } + _onRender() { + var t2, s3; + null == (t2 = this.lenisInstance) || t2.raf(Date.now()), null == (s3 = this.coreInstance) || s3.onRender({ currentScroll: this.lenisInstance.scroll, smooth: this.lenisInstance.isSmooth }); + } + _onScrollTo(t2) { + var s3; + t2.preventDefault(); + const e3 = null != (s3 = t2.currentTarget) ? s3 : null; + if (!e3) + return; + const i3 = e3.getAttribute("data-scroll-to-href") || e3.getAttribute("href"), r3 = e3.getAttribute("data-scroll-to-offset") || 0, l2 = e3.getAttribute("data-scroll-to-duration") || this.lenisOptions.duration || c.duration; + i3 && this.scrollTo(i3, { offset: "string" == typeof r3 ? parseInt(r3) : r3, duration: "string" == typeof l2 ? parseInt(l2) : l2 }); + } + start() { + var t2; + this.rafPlaying || (null == (t2 = this.lenisInstance) || t2.start(), this.rafPlaying = true, this.initCustomTicker ? this.initCustomTicker(this._onRenderBind) : this._raf()); + } + stop() { + var t2; + this.rafPlaying && (null == (t2 = this.lenisInstance) || t2.stop(), this.rafPlaying = false, this.destroyCustomTicker ? this.destroyCustomTicker(this._onRenderBind) : this.rafInstance && cancelAnimationFrame(this.rafInstance)); + } + removeScrollElements(t2) { + var s3; + t2 ? (this._unbindScrollToEvents(t2), null == (s3 = this.coreInstance) || s3.removeScrollElements(t2)) : console.error("Please provide a DOM Element as $oldContainer"); + } + addScrollElements(t2) { + var s3; + t2 ? (null == (s3 = this.coreInstance) || s3.addScrollElements(t2), requestAnimationFrame(() => { + this._bindScrollToEvents(t2); + })) : console.error("Please provide a DOM Element as $newContainer"); + } + resize() { + this._onResizeBind(); + } + scrollTo(t2, s3) { + var e3; + null == (e3 = this.lenisInstance) || e3.scrollTo(t2, { offset: null == s3 ? void 0 : s3.offset, lerp: null == s3 ? void 0 : s3.lerp, duration: null == s3 ? void 0 : s3.duration, immediate: null == s3 ? void 0 : s3.immediate, lock: null == s3 ? void 0 : s3.lock, force: null == s3 ? void 0 : s3.force, easing: null == s3 ? void 0 : s3.easing, onComplete: null == s3 ? void 0 : s3.onComplete }); + } + _raf() { + this._onRenderBind(), this.rafInstance = requestAnimationFrame(() => this._raf()); + } + }; + + // assets/scripts/modules/Scroll.js + var Scroll_default = class extends _default { + constructor(m) { + super(m); + } + init() { + this.scroll = new h({ + modularInstance: this + }); + } + /** + * Lazy load the related image. + * + * @see ../utils/image.js + * + * It is recommended to wrap your `` into an element with the + * CSS class name `.c-lazy`. The CSS class name modifier `.-lazy-loaded` + * will be applied on both the image and the parent wrapper. + * + * ```html + *
+ * + *
+ * ``` + * + * @param {LocomotiveScroll} args - The Locomotive Scroll instance. + */ + lazyLoad(args) { + lazyLoadImage(args.target, null, () => { + }); + } + scrollTo(params) { + var _b; + let _a = params, { target } = _a, options = __objRest(_a, ["target"]); + options = Object.assign({ + // Defaults + duration: 1 + }, options); + (_b = this.scroll) == null ? void 0 : _b.scrollTo(target, options); + } + destroy() { + this.scroll.destroy(); + } + }; + + // assets/scripts/globals.js + var import_svg4everybody = __toESM(require_svg4everybody(), 1); + var gridHelper2; + (() => __async(void 0, null, function* () { + if (ENV.IS_DEV) { + const gridHelperModule = yield Promise.resolve().then(() => (init_grid_helper(), grid_helper_exports)); + gridHelper2 = gridHelperModule == null ? void 0 : gridHelperModule.gridHelper; + } + }))(); + function globals_default() { + (0, import_svg4everybody.default)(); + gridHelper2 == null ? void 0 : gridHelper2(); + } + + // assets/scripts/utils/tickers.js + var debounce = (callback, delay, immediate = false) => { + let timeout = null; + return (...args) => { + clearTimeout(timeout); + const later = () => { + timeout = null; + if (!immediate) { + callback(...args); + } + }; + if (immediate && !timeout) { + callback(...args); + } + timeout = setTimeout(later, delay); + }; + }; + + // assets/scripts/utils/dom.js + var $html = document.documentElement; + var $body = document.body; + + // assets/scripts/app.js + var app = new main_esm_default({ + modules: modules_exports + }); + window.addEventListener("load", (event) => { + const $style = document.getElementById("main-css"); + if ($style) { + if ($style.isLoaded) { + init(); + } else { + $style.addEventListener("load", (event2) => { + init(); + }); + } + } else { + console.warn('The "main-css" stylesheet not found'); + } + }); + function init() { + globals_default(); + app.init(app); + $html.classList.add(CSS_CLASS.LOADED); + $html.classList.add(CSS_CLASS.READY); + $html.classList.remove(CSS_CLASS.LOADING); + const resizeEndEvent = new CustomEvent(CUSTOM_EVENT.RESIZE_END); + window.addEventListener("resize", () => { + $html.style.setProperty("--vw", `${document.documentElement.clientWidth * 0.01}px`); + debounce(() => { + window.dispatchEvent(resizeEndEvent); + }, 200, false); + }); + if (isFontLoadingAPIAvailable) { + loadFonts(FONT.EAGER, ENV.IS_DEV).then((eagerFonts) => { + $html.classList.add(CSS_CLASS.FONTS_LOADED); + if (ENV.IS_DEV) { + console.group("Eager fonts loaded!", eagerFonts.length, "/", document.fonts.size); + console.group("State of eager fonts:"); + eagerFonts.forEach((font) => console.log( + font.family, + font.style, + font.weight, + font.status + /*, font*/ + )); + console.groupEnd(); + console.group("State of all fonts:"); + document.fonts.forEach((font) => console.log( + font.family, + font.style, + font.weight, + font.status + /*, font*/ + )); + console.groupEnd(); + } + }); + } + } +})(); /*! Bundled license information: svg4everybody/dist/svg4everybody.js: diff --git a/www/assets/scripts/app.js.map b/www/assets/scripts/app.js.map index 864afeb..900dbb9 100644 --- a/www/assets/scripts/app.js.map +++ b/www/assets/scripts/app.js.map @@ -2,6 +2,6 @@ "version": 3, "sources": ["../../../node_modules/svg4everybody/dist/svg4everybody.js", "../../../assets/scripts/utils/grid-helper.js", "../../../node_modules/modujs/dist/main.esm.js", "../../../assets/scripts/modules.js", "../../../assets/scripts/config.js", "../../../assets/scripts/utils/fonts.js", "../../../assets/scripts/modules/Example.js", "../../../node_modules/modularload/dist/main.esm.js", "../../../assets/scripts/modules/Load.js", "../../../assets/scripts/utils/image.js", "../../../node_modules/@studio-freight/lenis/src/maths.js", "../../../node_modules/@studio-freight/lenis/src/animate.js", "../../../node_modules/@studio-freight/lenis/src/dimensions.js", "../../../node_modules/@studio-freight/lenis/src/debounce.js", "../../../node_modules/@studio-freight/lenis/src/emitter.js", "../../../node_modules/@studio-freight/lenis/src/virtual-scroll.js", "../../../node_modules/@studio-freight/lenis/src/index.js", "../../../node_modules/locomotive-scroll/src/core/IO.ts", "../../../node_modules/locomotive-scroll/src/utils/maths.ts", "../../../node_modules/locomotive-scroll/src/core/ScrollElement.ts", "../../../node_modules/locomotive-scroll/src/core/Core.ts", "../../../node_modules/locomotive-scroll/src/core/RO.ts", "../../../node_modules/locomotive-scroll/src/index.ts", "../../../assets/scripts/modules/Scroll.js", "../../../assets/scripts/globals.js", "../../../assets/scripts/utils/tickers.js", "../../../assets/scripts/utils/dom.js", "../../../assets/scripts/app.js"], "sourcesContent": ["!function(root, factory) {\n \"function\" == typeof define && define.amd ? // AMD. Register as an anonymous module unless amdModuleId is set\n define([], function() {\n return root.svg4everybody = factory();\n }) : \"object\" == typeof module && module.exports ? // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory() : root.svg4everybody = factory();\n}(this, function() {\n /*! svg4everybody v2.1.9 | github.com/jonathantneal/svg4everybody */\n function embed(parent, svg, target) {\n // if the target exists\n if (target) {\n // create a document fragment to hold the contents of the target\n var fragment = document.createDocumentFragment(), viewBox = !svg.hasAttribute(\"viewBox\") && target.getAttribute(\"viewBox\");\n // conditionally set the viewBox on the svg\n viewBox && svg.setAttribute(\"viewBox\", viewBox);\n // copy the contents of the clone into the fragment\n for (// clone the target\n var clone = target.cloneNode(!0); clone.childNodes.length; ) {\n fragment.appendChild(clone.firstChild);\n }\n // append the fragment into the svg\n parent.appendChild(fragment);\n }\n }\n function loadreadystatechange(xhr) {\n // listen to changes in the request\n xhr.onreadystatechange = function() {\n // if the request is ready\n if (4 === xhr.readyState) {\n // get the cached html document\n var cachedDocument = xhr._cachedDocument;\n // ensure the cached html document based on the xhr response\n cachedDocument || (cachedDocument = xhr._cachedDocument = document.implementation.createHTMLDocument(\"\"), \n cachedDocument.body.innerHTML = xhr.responseText, xhr._cachedTarget = {}), // clear the xhr embeds list and embed each item\n xhr._embeds.splice(0).map(function(item) {\n // get the cached target\n var target = xhr._cachedTarget[item.id];\n // ensure the cached target\n target || (target = xhr._cachedTarget[item.id] = cachedDocument.getElementById(item.id)), \n // embed the target into the svg\n embed(item.parent, item.svg, target);\n });\n }\n }, // test the ready state change immediately\n xhr.onreadystatechange();\n }\n function svg4everybody(rawopts) {\n function oninterval() {\n // while the index exists in the live collection\n for (// get the cached index\n var index = 0; index < uses.length; ) {\n // get the current \n var use = uses[index], parent = use.parentNode, svg = getSVGAncestor(parent), src = use.getAttribute(\"xlink:href\") || use.getAttribute(\"href\");\n if (!src && opts.attributeName && (src = use.getAttribute(opts.attributeName)), \n svg && src) {\n if (polyfill) {\n if (!opts.validate || opts.validate(src, svg, use)) {\n // remove the element\n parent.removeChild(use);\n // parse the src and get the url and id\n var srcSplit = src.split(\"#\"), url = srcSplit.shift(), id = srcSplit.join(\"#\");\n // if the link is external\n if (url.length) {\n // get the cached xhr request\n var xhr = requests[url];\n // ensure the xhr request exists\n xhr || (xhr = requests[url] = new XMLHttpRequest(), xhr.open(\"GET\", url), xhr.send(), \n xhr._embeds = []), // add the svg and id as an item to the xhr embeds list\n xhr._embeds.push({\n parent: parent,\n svg: svg,\n id: id\n }), // prepare the xhr ready state change event\n loadreadystatechange(xhr);\n } else {\n // embed the local id into the svg\n embed(parent, svg, document.getElementById(id));\n }\n } else {\n // increase the index when the previous value was not \"valid\"\n ++index, ++numberOfSvgUseElementsToBypass;\n }\n }\n } else {\n // increase the index when the previous value was not \"valid\"\n ++index;\n }\n }\n // continue the interval\n (!uses.length || uses.length - numberOfSvgUseElementsToBypass > 0) && requestAnimationFrame(oninterval, 67);\n }\n var polyfill, opts = Object(rawopts), newerIEUA = /\\bTrident\\/[567]\\b|\\bMSIE (?:9|10)\\.0\\b/, webkitUA = /\\bAppleWebKit\\/(\\d+)\\b/, olderEdgeUA = /\\bEdge\\/12\\.(\\d+)\\b/, edgeUA = /\\bEdge\\/.(\\d+)\\b/, inIframe = window.top !== window.self;\n polyfill = \"polyfill\" in opts ? opts.polyfill : newerIEUA.test(navigator.userAgent) || (navigator.userAgent.match(olderEdgeUA) || [])[1] < 10547 || (navigator.userAgent.match(webkitUA) || [])[1] < 537 || edgeUA.test(navigator.userAgent) && inIframe;\n // create xhr requests object\n var requests = {}, requestAnimationFrame = window.requestAnimationFrame || setTimeout, uses = document.getElementsByTagName(\"use\"), numberOfSvgUseElementsToBypass = 0;\n // conditionally start the interval if the polyfill is active\n polyfill && oninterval();\n }\n function getSVGAncestor(node) {\n for (var svg = node; \"svg\" !== svg.nodeName.toLowerCase() && (svg = svg.parentNode); ) {}\n return svg;\n }\n return svg4everybody;\n});", "/**\n * Grid Helper\n *\n * Provides a grid based on the design guidelines and is helpful for web integration.\n *\n * - `Control + g` to toggle the grid\n *\n */\n\n/**\n * @typedef {Object} GridHelperReference\n *\n * @property {string} [gutterCssVar=GRID_HELPER_GUTTER_CSS_VAR] - CSS variable used to define grid gutters.\n * @property {string} [marginCssVar=GRID_HELPER_MARGIN_CSS_VAR] - CSS variable used to define grid margins.\n * @property {string} [rgbaColor=GRID_HELPER_RGBA_COLOR] - RGBA color for the grid appearence.\n */\n\nconst GRID_HELPER_GUTTER_CSS_VAR = '--grid-gutter';\nconst GRID_HELPER_MARGIN_CSS_VAR = '--grid-margin';\nconst GRID_HELPER_RGBA_COLOR = 'rgba(255, 0, 0, .1)';\n\n/**\n * Create a grid helper\n *\n * @param {GridHelperReference}\n *\n */\nfunction gridHelper({\n gutterCssVar = GRID_HELPER_GUTTER_CSS_VAR,\n marginCssVar = GRID_HELPER_MARGIN_CSS_VAR,\n rgbaColor = GRID_HELPER_RGBA_COLOR,\n} = {}) {\n // Set grid container\n const $gridContainer = document.createElement('div');\n document.body.append($gridContainer);\n\n // Set grid appearence\n setGridHelperColumns($gridContainer, rgbaColor);\n setGridHelperStyles($gridContainer, gutterCssVar, marginCssVar);\n\n // Set grid interactivity\n setGridEvents($gridContainer, rgbaColor);\n}\n\n/**\n * Set grid container styles\n *\n * @param {HTMLElement} $container - DOM Element that contains a list of generated columns\n * @param {string} gutterCssVar - CSS variable used to define grid gutters.\n * @param {string} marginCssVar - CSS variable used to define grid margins.\n *\n */\nfunction setGridHelperStyles($container, gutterCssVar, marginCssVar) {\n const elStyles = $container.style;\n elStyles.zIndex = '10000';\n elStyles.position = 'fixed';\n elStyles.top = '0';\n elStyles.left = '0';\n elStyles.display = 'flex';\n elStyles.width = '100%';\n elStyles.height = '100%';\n elStyles.columnGap = `var(${gutterCssVar}, 0)`;\n elStyles.paddingLeft = `var(${marginCssVar}, 0)`;\n elStyles.paddingRight = `var(${marginCssVar}, 0)`;\n elStyles.pointerEvents = 'none';\n elStyles.visibility = 'hidden';\n}\n\n/**\n * Set grid columns\n *\n * @param {HTMLElement} $container - DOM Element that will contain a list of generated columns\n * @param {string} rgbaColor - RGBA color to stylize the generated columns\n *\n */\nfunction setGridHelperColumns($container, rgbaColor) {\n // Clear columns\n $container.innerHTML = '';\n\n // Loop through columns\n const columns = Number(\n window.getComputedStyle($container).getPropertyValue('--grid-columns')\n );\n\n let $col;\n for (var i = 0; i < columns; i++) {\n $col = document.createElement('div');\n $col.style.flex = '1 1 0';\n $col.style.backgroundColor = rgbaColor;\n $container.appendChild($col);\n }\n}\n\n/**\n * Set grid events\n *\n * Resize to rebuild columns\n * Keydown/Keyup to toggle the grid display\n *\n * @param {HTMLElement} $container - DOM Element that contains a list of generated columns\n * @param {string} rgbaColor - RGBA color to stylize the generated columns\n *\n */\nfunction setGridEvents($container, rgbaColor) {\n // Handle resize\n window.addEventListener(\n 'resize',\n setGridHelperColumns($container, rgbaColor)\n );\n\n // Toggle grid\n let ctrlDown = false;\n let isActive = false;\n\n document.addEventListener('keydown', (e) => {\n if (e.key == 'Control') {\n ctrlDown = true;\n } else {\n if (ctrlDown && e.key == 'g') {\n if (isActive) {\n $container.style.visibility = 'hidden';\n } else {\n $container.style.visibility = 'visible';\n }\n\n isActive = !isActive;\n }\n }\n });\n\n document.addEventListener('keyup', (e) => {\n if (e.key == 'Control') {\n ctrlDown = false;\n }\n });\n}\n\nexport { gridHelper };\n", "function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _toConsumableArray(arr) {\n return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();\n}\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return _arrayLikeToArray(arr);\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter);\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n var _e = undefined;\n\n try {\n for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar _default = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.mAttr = 'data-' + options.dataName;\n this.mCaptureEvents = ['mouseenter', 'mouseleave'];\n this.el = options.el;\n }\n\n _createClass(_default, [{\n key: \"mInit\",\n value: function mInit(modules) {\n var _this = this;\n\n this.modules = modules;\n this.mCheckEventTarget = this.mCheckEventTarget.bind(this);\n\n if (this.events) {\n Object.keys(this.events).forEach(function (event) {\n return _this.mAddEvent(event);\n });\n }\n }\n }, {\n key: \"mUpdate\",\n value: function mUpdate(modules) {\n this.modules = modules;\n }\n }, {\n key: \"mDestroy\",\n value: function mDestroy() {\n var _this2 = this;\n\n if (this.events) {\n Object.keys(this.events).forEach(function (event) {\n return _this2.mRemoveEvent(event);\n });\n }\n }\n }, {\n key: \"mAddEvent\",\n value: function mAddEvent(event) {\n var capture = this.mCaptureEvents.includes(event) ? true : false;\n this.el.addEventListener(event, this.mCheckEventTarget, capture);\n }\n }, {\n key: \"mRemoveEvent\",\n value: function mRemoveEvent(event) {\n var capture = this.mCaptureEvents.includes(event) ? true : false;\n this.el.removeEventListener(event, this.mCheckEventTarget, capture);\n }\n }, {\n key: \"mCheckEventTarget\",\n value: function mCheckEventTarget(e) {\n var event = this.events[e.type];\n\n if (typeof event === \"string\") {\n this[event](e);\n } else {\n var data = '[' + this.mAttr + ']';\n var target = e.target;\n\n if (this.mCaptureEvents.includes(e.type)) {\n if (target.matches(data)) {\n this.mCallEventMethod(e, event, target);\n }\n } else {\n while (target && target !== document) {\n if (target.matches(data)) {\n if (this.mCallEventMethod(e, event, target) != 'undefined') {\n break;\n }\n }\n\n target = target.parentNode;\n }\n }\n }\n }\n }, {\n key: \"mCallEventMethod\",\n value: function mCallEventMethod(e, event, target) {\n var name = target.getAttribute(this.mAttr);\n\n if (event.hasOwnProperty(name)) {\n var method = event[name];\n\n if (!e.hasOwnProperty('currentTarget')) {\n Object.defineProperty(e, 'currentTarget', {\n value: target\n });\n }\n\n if (!e.hasOwnProperty('curTarget')) {\n Object.defineProperty(e, 'curTarget', {\n value: target\n }); // For IE 11\n }\n\n this[method](e);\n }\n }\n }, {\n key: \"$\",\n value: function $(query, context) {\n var classIndex = query.indexOf('.');\n var idIndex = query.indexOf('#');\n var attrIndex = query.indexOf('[');\n var indexes = [classIndex, idIndex, attrIndex].filter(function (index) {\n return index != -1;\n });\n var index = false;\n var name = query;\n var more = '';\n var parent = this.el;\n\n if (indexes.length) {\n index = Math.min.apply(Math, _toConsumableArray(indexes));\n name = query.slice(0, index);\n more = query.slice(index);\n }\n\n if (_typeof(context) == 'object') {\n parent = context;\n }\n\n return parent.querySelectorAll('[' + this.mAttr + '=' + name + ']' + more);\n }\n }, {\n key: \"parent\",\n value: function parent(query, context) {\n var data = '[' + this.mAttr + '=' + query + ']';\n var parent = context.parentNode;\n\n while (parent && parent !== document) {\n if (parent.matches(data)) {\n return parent;\n }\n\n parent = parent.parentNode;\n }\n }\n }, {\n key: \"getData\",\n value: function getData(name, context) {\n var target = context || this.el;\n return target.getAttribute(this.mAttr + '-' + name);\n }\n }, {\n key: \"setData\",\n value: function setData(name, value, context) {\n var target = context || this.el;\n return target.setAttribute(this.mAttr + '-' + name, value);\n }\n }, {\n key: \"call\",\n value: function call(func, args, mod, id) {\n var _this3 = this;\n\n if (args && !mod) {\n mod = args;\n args = false;\n }\n\n if (this.modules[mod]) {\n if (id) {\n if (this.modules[mod][id]) {\n this.modules[mod][id][func](args);\n }\n } else {\n Object.keys(this.modules[mod]).forEach(function (id) {\n _this3.modules[mod][id][func](args);\n });\n }\n }\n }\n }, {\n key: \"on\",\n value: function on(e, mod, func, id) {\n var _this4 = this;\n\n if (this.modules[mod]) {\n if (id) {\n this.modules[mod][id].el.addEventListener(e, function (o) {\n return func(o);\n });\n } else {\n Object.keys(this.modules[mod]).forEach(function (i) {\n _this4.modules[mod][i].el.addEventListener(e, function (o) {\n return func(o);\n });\n });\n }\n }\n }\n }, {\n key: \"init\",\n value: function init() {}\n }, {\n key: \"destroy\",\n value: function destroy() {}\n }]);\n\n return _default;\n}();\n\nvar _default$1 = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.app;\n this.modules = options.modules;\n this.currentModules = {};\n this.activeModules = {};\n this.newModules = {};\n this.moduleId = 0;\n }\n\n _createClass(_default, [{\n key: \"init\",\n value: function init(app, scope) {\n var _this = this;\n\n var container = scope || document;\n var elements = container.querySelectorAll('*');\n\n if (app && !this.app) {\n this.app = app;\n }\n\n this.activeModules['app'] = {\n 'app': this.app\n };\n elements.forEach(function (el) {\n Array.from(el.attributes).forEach(function (i) {\n if (i.name.startsWith('data-module')) {\n var moduleExists = false;\n var dataName = i.name.split('-').splice(2);\n\n var moduleName = _this.toCamel(dataName);\n\n if (_this.modules[moduleName]) {\n moduleExists = true;\n } else if (_this.modules[_this.toUpper(moduleName)]) {\n moduleName = _this.toUpper(moduleName);\n moduleExists = true;\n }\n\n if (moduleExists) {\n var options = {\n el: el,\n name: moduleName,\n dataName: dataName.join('-')\n };\n var module = new _this.modules[moduleName](options);\n var id = i.value;\n\n if (!id) {\n _this.moduleId++;\n id = 'm' + _this.moduleId;\n el.setAttribute(i.name, id);\n }\n\n _this.addActiveModule(moduleName, id, module);\n\n var moduleId = moduleName + '-' + id;\n\n if (scope) {\n _this.newModules[moduleId] = module;\n } else {\n _this.currentModules[moduleId] = module;\n }\n }\n }\n });\n });\n Object.entries(this.currentModules).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n id = _ref2[0],\n module = _ref2[1];\n\n if (scope) {\n var split = id.split('-');\n var moduleName = split.shift();\n var moduleId = split.pop();\n\n _this.addActiveModule(moduleName, moduleId, module);\n } else {\n _this.initModule(module);\n }\n });\n }\n }, {\n key: \"initModule\",\n value: function initModule(module) {\n module.mInit(this.activeModules);\n module.init();\n }\n }, {\n key: \"addActiveModule\",\n value: function addActiveModule(name, id, module) {\n if (this.activeModules[name]) {\n Object.assign(this.activeModules[name], _defineProperty({}, id, module));\n } else {\n this.activeModules[name] = _defineProperty({}, id, module);\n }\n }\n }, {\n key: \"update\",\n value: function update(scope) {\n var _this2 = this;\n\n this.init(this.app, scope);\n Object.entries(this.currentModules).forEach(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n id = _ref4[0],\n module = _ref4[1];\n\n module.mUpdate(_this2.activeModules);\n });\n Object.entries(this.newModules).forEach(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 2),\n id = _ref6[0],\n module = _ref6[1];\n\n _this2.initModule(module);\n });\n Object.assign(this.currentModules, this.newModules);\n }\n }, {\n key: \"destroy\",\n value: function destroy(scope) {\n if (scope) {\n this.destroyScope(scope);\n } else {\n this.destroyModules();\n }\n }\n }, {\n key: \"destroyScope\",\n value: function destroyScope(scope) {\n var _this3 = this;\n\n var elements = scope.querySelectorAll('*');\n elements.forEach(function (el) {\n Array.from(el.attributes).forEach(function (i) {\n if (i.name.startsWith('data-module')) {\n var id = i.value;\n var dataName = i.name.split('-').splice(2);\n var moduleName = _this3.toCamel(dataName) + '-' + id;\n var moduleExists = false;\n\n if (_this3.currentModules[moduleName]) {\n moduleExists = true;\n } else if (_this3.currentModules[_this3.toUpper(moduleName)]) {\n moduleName = _this3.toUpper(moduleName);\n moduleExists = true;\n }\n\n if (moduleExists) {\n _this3.destroyModule(_this3.currentModules[moduleName]);\n\n delete _this3.currentModules[moduleName];\n }\n }\n });\n });\n this.activeModules = {};\n this.newModules = {};\n }\n }, {\n key: \"destroyModules\",\n value: function destroyModules() {\n var _this4 = this;\n\n Object.entries(this.currentModules).forEach(function (_ref7) {\n var _ref8 = _slicedToArray(_ref7, 2),\n id = _ref8[0],\n module = _ref8[1];\n\n _this4.destroyModule(module);\n });\n this.currentModules = [];\n }\n }, {\n key: \"destroyModule\",\n value: function destroyModule(module) {\n module.mDestroy();\n module.destroy();\n }\n }, {\n key: \"toCamel\",\n value: function toCamel(arr) {\n var _this5 = this;\n\n return arr.reduce(function (a, b) {\n return a + _this5.toUpper(b);\n });\n }\n }, {\n key: \"toUpper\",\n value: function toUpper(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n }\n }]);\n\n return _default;\n}();\n\nexport default _default$1;\nexport { _default as module };\n", "export {default as Example} from './modules/Example';\nexport {default as Load} from './modules/Load';\nexport {default as Scroll} from './modules/Scroll';\n", "/**\n * > When using the esBuild API, all `process.env.NODE_ENV` expressions\n * > are automatically defined to `\"production\"` if all minification\n * > options are enabled and `\"development\"` otherwise. This only happens\n * > if `process`, `process.env`, and `process.env.NODE_ENV` are not already\n * > defined. This substitution is necessary to avoid code crashing instantly\n * > (since `process` is a Node API, not a web API).\n * > \u2014 https://esbuild.github.io/api/#platform\n */\n\nconst NODE_ENV = process.env.NODE_ENV\nconst IS_MOBILE = window.matchMedia('(any-pointer:coarse)').matches\n\n// Main environment variables\nconst ENV = Object.freeze({\n // Node environment\n NAME: NODE_ENV,\n IS_PROD: NODE_ENV === 'production',\n IS_DEV: NODE_ENV === 'development',\n\n // Device\n IS_MOBILE,\n IS_DESKTOP: !IS_MOBILE,\n})\n\n// Main CSS classes used within the project\nconst CSS_CLASS = Object.freeze({\n LOADING: 'is-loading',\n LOADED: 'is-loaded',\n READY: 'is-ready',\n FONTS_LOADED: 'fonts-loaded',\n LAZY_CONTAINER: 'c-lazy',\n LAZY_LOADED: '-lazy-loaded',\n // ...\n})\n\n// Custom js events\nconst CUSTOM_EVENT = Object.freeze({\n RESIZE_END: 'loco.resizeEnd',\n // ...\n})\n\n// Fonts parameters\nconst FONT = Object.freeze({\n EAGER: [\n { family: 'Source Sans', style: 'normal', weight: 400 },\n { family: 'Source Sans', style: 'normal', weight: 700 },\n ],\n})\n\nexport {\n ENV,\n CSS_CLASS,\n CUSTOM_EVENT,\n FONT,\n}\n", "/**\n * Font Faces\n *\n * Provides utilities to facilitate interactions with the CSS Font Loading API.\n *\n * Features functions to:\n *\n * - Retrieve one or more `FontFace` instances based on a font search query.\n * - Check if a `FontFace` instance matches a font search query.\n * - Eagerly load fonts that match a font search query.\n * - Wait until fonts that match a font search query are loaded.\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API}\n */\n\n/**\n * @typedef {Object} FontFaceReference\n *\n * @property {string} family - The name used to identify the font in our CSS.\n * @property {string} [style] - The style used by the font in our CSS.\n * @property {string} [weight] - The weight used by the font in our CSS.\n */\n\nconst isFontLoadingAPIAvailable = ('fonts' in document);\n\n/**\n * Determines if the given font matches the given `FontFaceReference`.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {FontFaceReference} criterion - The object of property values to match.\n *\n * @returns {boolean}\n */\nfunction conformsToReference(font, criterion)\n{\n for (const [ key, value ] of Object.entries(criterion)) {\n switch (key) {\n case 'family': {\n if (trim(font[key]) !== value) {\n return false;\n }\n break;\n }\n\n case 'weight': {\n /**\n * Note concerning font weights:\n * Loose equality (`==`) is used to compare numeric weights,\n * a number (`400`) and a numeric string (`\"400\"`).\n * Comparison between numeric and keyword values is neglected.\n *\n * @link https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight#common_weight_name_mapping\n */\n if (font[key] != value) {\n return false;\n }\n break;\n }\n\n default: {\n if (font[key] !== value) {\n return false;\n }\n break;\n }\n }\n }\n\n return true;\n}\n\n/**\n * Determines if the given font matches the given font shorthand.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {string} criterion - The font shorthand to match.\n *\n * @returns {boolean}\n */\nfunction conformsToShorthand(font, criterion)\n{\n const family = trim(font.family);\n\n if (trim(family) === criterion) {\n return true;\n }\n\n if (\n criterion.endsWith(trim(family)) && (\n criterion.match(font.weight) ||\n criterion.match(font.style)\n )\n ) {\n return true;\n }\n\n return true;\n}\n\n/**\n * Determines if the given font matches any of the given criteria.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {FontFaceReference[]} criteria - A list of objects with property values to match.\n *\n * @returns {boolean}\n */\nfunction conformsToAnyReference(font, criteria)\n{\n for (const criterion of criteria) {\n if (conformsToReference(font, criterion)) {\n return true;\n }\n }\n\n return false;\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided `FontFaceReference`.\n *\n * @param {FontFaceReference} font\n *\n * @returns {FontFace[]}\n */\nfunction findManyByReference(search)\n{\n const found = [];\n\n for (const font of document.fonts) {\n if (conformsToReference(font, search)) {\n found.push(font);\n }\n }\n\n return found;\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided font shorthand.\n *\n * @param {string} font\n *\n * @returns {FontFace[]}\n */\nfunction findManyByShorthand(search)\n{\n const found = [];\n\n for (const font of document.fonts) {\n if (conformsToShorthand(font, search)) {\n found.push(font);\n }\n }\n\n return found;\n}\n\n/**\n * Returns the first `FontFace` from `document.fonts` that satisfies\n * the provided `FontFaceReference`.\n *\n * @param {FontFaceReference} font\n *\n * @returns {?FontFace}\n */\nfunction findOneByReference(search)\n{\n for (const font of document.fonts) {\n if (conformsToReference(font, criterion)) {\n return font;\n }\n }\n\n return null;\n}\n\n/**\n * Returns the first `FontFace` from `document.fonts` that satisfies\n * the provided font shorthand.\n *\n * Examples:\n *\n * - \"Roboto\"\n * - \"italic bold 16px Roboto\"\n *\n * @param {string} font\n *\n * @returns {?FontFace}\n */\nfunction findOneByShorthand(search)\n{\n for (const font of document.fonts) {\n if (conformsToShorthand(font, search)) {\n return font;\n }\n }\n\n return null;\n}\n\n/**\n * Returns a `FontFace` from `document.fonts` that satisfies\n * the provided query.\n *\n * @param {FontFaceReference|string} font - Either:\n * - a `FontFaceReference` object\n * - a font family name\n * - a font specification, for example \"italic bold 16px Roboto\"\n *\n * @returns {?FontFace}\n *\n * @throws {TypeError}\n */\nfunction getAny(search) {\n if (search) {\n switch (typeof search) {\n case 'string':\n return findOneByShorthand(search);\n\n case 'object':\n return findOneByReference(search);\n }\n }\n\n throw new TypeError(\n 'Expected font query to be font shorthand or font reference'\n );\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided queries.\n *\n * @param {FontFaceReference|string|(FontFaceReference|string)[]} queries\n *\n * @returns {FontFace[]}\n *\n * @throws {TypeError}\n */\nfunction getMany(queries) {\n if (!Array.isArray(queries)) {\n queries = [ queries ];\n }\n\n const found = new Set();\n\n queries.forEach((search) => {\n if (search) {\n switch (typeof search) {\n case 'string':\n found.add(...findManyByShorthand(search));\n return;\n\n case 'object':\n found.add(...findManyByReference(search));\n return;\n }\n }\n\n throw new TypeError(\n 'Expected font query to be font shorthand or font reference'\n );\n })\n\n return [ ...found ];\n}\n\n/**\n * Determines if a font face is registered.\n *\n * @param {FontFace|FontFaceReference|string} search - Either:\n * - a `FontFace` instance\n * - a `FontFaceReference` object\n * - a font family name\n * - a font specification, for example \"italic bold 16px Roboto\"\n *\n * @returns {boolean}\n */\nfunction hasAny(search) {\n if (search instanceof FontFace) {\n return document.fonts.has(search);\n }\n\n return getAny(search) != null;\n}\n\n/**\n * Eagerly load fonts.\n *\n * Most user agents only fetch and load fonts when they are first needed\n * (\"lazy loaded\"), which can result in a perceptible delay.\n *\n * This function will \"eager load\" the fonts.\n *\n * @param {(FontFace|FontFaceReference)[]} fontsToLoad - List of fonts to load.\n * @param {boolean} [debug] - If TRUE, log details to the console.\n *\n * @returns {Promise}\n */\nasync function loadFonts(fontsToLoad, debug = false)\n{\n if ((fontsToLoad.size ?? fontsToLoad.length) === 0) {\n throw new TypeError(\n 'Expected at least one font'\n );\n }\n\n return await loadFontsWithAPI([ ...fontsToLoad ], debug);\n}\n\n/**\n * Eagerly load a font using `FontFaceSet` API.\n *\n * @param {FontFace} font\n *\n * @returns {Promise}\n */\nasync function loadFontFaceWithAPI(font)\n{\n return await (font.status === 'unloaded'\n ? font.load()\n : font.loaded\n ).then((font) => font, (err) => font)\n}\n\n/**\n * Eagerly load fonts using `FontFaceSet` API.\n *\n * @param {FontFaceReference[]} fontsToLoad\n * @param {boolean} [debug]\n *\n * @returns {Promise}\n */\nasync function loadFontsWithAPI(fontsToLoad, debug = false)\n{\n debug && console.group('[loadFonts:API]', fontsToLoad.length, '/', document.fonts.size);\n\n const fontsToBeLoaded = [];\n\n for (const fontToLoad of fontsToLoad) {\n if (fontToLoad instanceof FontFace) {\n if (!document.fonts.has(fontToLoad)) {\n document.fonts.add(fontToLoad);\n }\n\n fontsToBeLoaded.push(\n loadFontFaceWithAPI(fontToLoad)\n );\n } else {\n fontsToBeLoaded.push(\n ...getMany(fontToLoad).map((font) => loadFontFaceWithAPI(font))\n );\n }\n }\n\n debug && console.groupEnd();\n\n return await Promise.all(fontsToBeLoaded);\n}\n\n/**\n * Removes quotes from the the string.\n *\n * When a `@font-face` is declared, the font family is sometimes\n * defined in quotes which end up included in the `FontFace` instance.\n *\n * @param {string} value\n *\n * @returns {string}\n */\nfunction trim(value) {\n return value.replace(/['\"]+/g, '');\n}\n\n/**\n * Returns a Promise that resolves with the specified fonts\n * when they are done loading or failed.\n *\n * @param {FontFaceReference|string|(FontFaceReference|string)[]} queries\n *\n * @returns {Promise}\n */\nasync function whenReady(queries)\n{\n const fonts = getMany(queries);\n\n return await Promise.all(fonts.map((font) => font.loaded));\n}\n\nexport {\n getAny,\n getMany,\n hasAny,\n isFontLoadingAPIAvailable,\n loadFonts,\n whenReady,\n}\n", "import { module } from 'modujs';\nimport { FONT } from '../config';\nimport { whenReady } from '../utils/fonts';\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n whenReady(FONT.EAGER).then((fonts) => this.onFontsLoaded(fonts));\n }\n\n onFontsLoaded(fonts) {\n console.log('Example: Eager Fonts Loaded!', fonts)\n }\n}\n", "function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"];\n\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n\n var _s, _e;\n\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar _default = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.defaults = {\n name: 'load',\n loadingClass: 'is-loading',\n loadedClass: 'is-loaded',\n readyClass: 'is-ready',\n transitionsPrefix: 'is-',\n transitionsHistory: true,\n enterDelay: 0,\n exitDelay: 0,\n loadedDelay: 0,\n isLoaded: false,\n isEntered: false,\n isUrl: false,\n transitionContainer: null,\n popstateIgnore: false\n };\n Object.assign(this, this.defaults, options);\n this.options = options;\n this.namespace = 'modular';\n this.html = document.documentElement;\n this.href = window.location.href;\n this.container = 'data-' + this.name + '-container';\n this.subContainer = false;\n this.prevTransition = null;\n this.loadAttributes = ['src', 'srcset', 'style', 'href'];\n this.isInserted = false;\n this.isLoading = false;\n this.enterTimeout = false;\n this.controller = new AbortController();\n this.classContainer = this.html;\n this.isChrome = navigator.userAgent.indexOf(\"Chrome\") != -1 ? true : false;\n this.init();\n }\n\n _createClass(_default, [{\n key: \"init\",\n value: function init() {\n var _this = this;\n\n window.addEventListener('popstate', function (e) {\n return _this.checkState(e);\n }, false);\n this.html.addEventListener('click', function (e) {\n return _this.checkClick(e);\n }, false);\n this.loadEls(document);\n }\n }, {\n key: \"checkClick\",\n value: function checkClick(e) {\n if (!e.ctrlKey && !e.metaKey) {\n var target = e.target;\n\n while (target && target !== document) {\n if (target.matches('a') && target.getAttribute('download') == null) {\n var href = target.getAttribute('href');\n\n if (!href.startsWith('#') && !href.startsWith('mailto:') && !href.startsWith('tel:')) {\n e.preventDefault();\n this.reset();\n this.getClickOptions(target);\n }\n\n break;\n }\n\n target = target.parentNode;\n }\n }\n }\n }, {\n key: \"checkState\",\n value: function checkState() {\n if (typeof this.popstateIgnore === 'string' && window.location.href.indexOf(this.popstateIgnore) > -1) {\n return;\n }\n\n this.reset();\n this.getStateOptions();\n }\n }, {\n key: \"reset\",\n value: function reset() {\n if (this.isLoading) {\n this.controller.abort();\n this.isLoading = false;\n this.controller = new AbortController();\n }\n\n window.clearTimeout(this.enterTimeout);\n\n if (this.isInserted) {\n this.removeContainer();\n }\n\n this.classContainer = this.html;\n Object.assign(this, this.defaults, this.options);\n }\n }, {\n key: \"getClickOptions\",\n value: function getClickOptions(link) {\n this.transition = link.getAttribute('data-' + this.name);\n this.isUrl = link.getAttribute('data-' + this.name + '-url');\n var href = link.getAttribute('href');\n var target = link.getAttribute('target');\n\n if (target == '_blank') {\n window.open(href, '_blank');\n return;\n }\n\n if (this.transition == 'false') {\n window.location = href;\n return;\n }\n\n this.setOptions(href, true);\n }\n }, {\n key: \"getStateOptions\",\n value: function getStateOptions() {\n if (this.transitionsHistory) {\n this.transition = history.state;\n } else {\n this.transition = false;\n }\n\n var href = window.location.href;\n this.setOptions(href);\n }\n }, {\n key: \"goTo\",\n value: function goTo(href, transition, isUrl) {\n this.reset();\n this.transition = transition;\n this.isUrl = isUrl;\n this.setOptions(href, true);\n }\n }, {\n key: \"setOptions\",\n value: function setOptions(href, push) {\n var container = '[' + this.container + ']';\n var oldContainer;\n\n if (this.transition && this.transition != 'true') {\n this.transitionContainer = '[' + this.container + '=\"' + this.transition + '\"]';\n this.loadingClass = this.transitions[this.transition].loadingClass || this.loadingClass;\n this.loadedClass = this.transitions[this.transition].loadedClass || this.loadedClass;\n this.readyClass = this.transitions[this.transition].readyClass || this.readyClass;\n this.transitionsPrefix = this.transitions[this.transition].transitionsPrefix || this.transitionsPrefix;\n this.enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay;\n this.exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay;\n this.loadedDelay = this.transitions[this.transition].loadedDelay || this.loadedDelay;\n oldContainer = document.querySelector(this.transitionContainer);\n }\n\n if (oldContainer) {\n container = this.transitionContainer;\n this.oldContainer = oldContainer;\n this.classContainer = this.oldContainer.parentNode;\n\n if (!this.subContainer) {\n history.replaceState(this.transition, null, this.href);\n }\n\n this.subContainer = true;\n } else {\n this.oldContainer = document.querySelector(container);\n\n if (this.subContainer) {\n history.replaceState(this.prevTransition, null, this.href);\n }\n\n this.subContainer = false;\n }\n\n this.href = href;\n this.parentContainer = this.oldContainer.parentNode;\n\n if (this.isUrl === '' || this.isUrl != null && this.isUrl != 'false' && this.isUrl != false) {\n history.pushState(this.transition, null, href);\n } else {\n this.oldContainer.classList.add('is-old');\n this.setLoading();\n this.startEnterDelay();\n this.loadHref(href, container, push);\n }\n }\n }, {\n key: \"setLoading\",\n value: function setLoading() {\n this.classContainer.classList.remove(this.loadedClass, this.readyClass);\n this.classContainer.classList.add(this.loadingClass);\n this.classContainer.classList.remove(this.transitionsPrefix + this.prevTransition);\n\n if (this.transition) {\n this.classContainer.classList.add(this.transitionsPrefix + this.transition);\n }\n\n if (!this.subContainer) {\n this.prevTransition = this.transition;\n }\n\n var loadingEvent = new Event(this.namespace + 'loading');\n window.dispatchEvent(loadingEvent);\n }\n }, {\n key: \"startEnterDelay\",\n value: function startEnterDelay() {\n var _this2 = this;\n\n this.enterTimeout = window.setTimeout(function () {\n _this2.isEntered = true;\n\n if (_this2.isLoaded) {\n _this2.transitionContainers();\n }\n }, this.enterDelay);\n }\n }, {\n key: \"loadHref\",\n value: function loadHref(href, container, push) {\n var _this3 = this;\n\n this.isLoading = true;\n var signal = this.controller.signal;\n fetch(href, {\n signal: signal\n }).then(function (response) {\n return response.text();\n }).then(function (data) {\n if (push) {\n history.pushState(_this3.transition, null, href);\n }\n\n var parser = new DOMParser();\n _this3.data = parser.parseFromString(data, 'text/html');\n _this3.newContainer = _this3.data.querySelector(container);\n\n _this3.newContainer.classList.add('is-new');\n\n _this3.parentNewContainer = _this3.newContainer.parentNode;\n\n _this3.hideContainer();\n\n _this3.parentContainer.insertBefore(_this3.newContainer, _this3.oldContainer);\n\n _this3.isInserted = true;\n\n _this3.setSvgs();\n\n _this3.isLoaded = true;\n\n if (_this3.isEntered) {\n _this3.transitionContainers();\n }\n\n _this3.loadEls(_this3.newContainer);\n\n _this3.isLoading = false;\n })[\"catch\"](function (err) {\n window.location = href;\n });\n }\n }, {\n key: \"transitionContainers\",\n value: function transitionContainers() {\n var _this4 = this;\n\n this.setAttributes();\n this.showContainer();\n this.setLoaded();\n setTimeout(function () {\n _this4.removeContainer();\n\n _this4.setReady();\n }, this.exitDelay);\n }\n }, {\n key: \"setSvgs\",\n value: function setSvgs() {\n if (this.isChrome) {\n var svgs = this.newContainer.querySelectorAll('use');\n\n if (svgs.length) {\n svgs.forEach(function (svg) {\n var xhref = svg.getAttribute('xlink:href');\n\n if (xhref) {\n svg.parentNode.innerHTML = '';\n } else {\n var href = svg.getAttribute('href');\n if (href) svg.parentNode.innerHTML = '';\n }\n });\n }\n }\n }\n }, {\n key: \"setAttributes\",\n value: function setAttributes() {\n var _this5 = this;\n\n var title = this.data.getElementsByTagName('title')[0];\n var newDesc = this.data.head.querySelector('meta[name=\"description\"]');\n var oldDesc = document.head.querySelector('meta[name=\"description\"]');\n var container;\n var newContainer;\n\n if (this.subContainer) {\n newContainer = this.parentNewContainer;\n container = document.querySelector(this.transitionContainer).parentNode;\n } else {\n newContainer = this.data.querySelector('html');\n container = document.querySelector('html');\n }\n\n var datas = Object.assign({}, newContainer.dataset);\n if (title) document.title = title.innerText;\n if (oldDesc && newDesc) oldDesc.setAttribute('content', newDesc.getAttribute('content'));\n\n if (datas) {\n Object.entries(datas).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n key = _ref2[0],\n val = _ref2[1];\n\n container.setAttribute('data-' + _this5.toDash(key), val);\n });\n }\n }\n }, {\n key: \"toDash\",\n value: function toDash(str) {\n return str.split(/(?=[A-Z])/).join('-').toLowerCase();\n }\n }, {\n key: \"hideContainer\",\n value: function hideContainer() {\n this.newContainer.style.visibility = 'hidden';\n this.newContainer.style.height = 0;\n this.newContainer.style.overflow = 'hidden';\n }\n }, {\n key: \"showContainer\",\n value: function showContainer() {\n this.newContainer.style.visibility = '';\n this.newContainer.style.height = '';\n this.newContainer.style.overflow = '';\n }\n }, {\n key: \"loadEls\",\n value: function loadEls(container) {\n var _this6 = this;\n\n var promises = [];\n this.loadAttributes.forEach(function (attr) {\n var data = 'data-' + _this6.name + '-' + attr;\n var els = container.querySelectorAll('[' + data + ']');\n\n if (els.length) {\n els.forEach(function (el) {\n var elData = el.getAttribute(data);\n el.setAttribute(attr, elData);\n\n if (attr == 'src' || attr == 'srcset') {\n var promise = new Promise(function (resolve) {\n el.onload = function () {\n return resolve(el);\n };\n });\n promises.push(promise);\n }\n });\n }\n });\n Promise.all(promises).then(function (val) {\n var imagesEvent = new Event(_this6.namespace + 'images');\n window.dispatchEvent(imagesEvent);\n });\n }\n }, {\n key: \"setLoaded\",\n value: function setLoaded() {\n var _this7 = this;\n\n this.classContainer.classList.remove(this.loadingClass);\n setTimeout(function () {\n _this7.classContainer.classList.add(_this7.loadedClass);\n }, this.loadedDelay);\n var loadedEvent = new Event(this.namespace + 'loaded');\n window.dispatchEvent(loadedEvent);\n }\n }, {\n key: \"removeContainer\",\n value: function removeContainer() {\n this.parentContainer.removeChild(this.oldContainer);\n this.newContainer.classList.remove('is-new');\n this.isInserted = false;\n }\n }, {\n key: \"setReady\",\n value: function setReady() {\n this.classContainer.classList.add(this.readyClass);\n var readyEvent = new Event(this.namespace + 'ready');\n window.dispatchEvent(readyEvent);\n }\n }, {\n key: \"on\",\n value: function on(event, func) {\n var _this8 = this;\n\n window.addEventListener(this.namespace + event, function () {\n switch (event) {\n case 'loading':\n return func(_this8.transition, _this8.oldContainer);\n\n case 'loaded':\n return func(_this8.transition, _this8.oldContainer, _this8.newContainer);\n\n case 'ready':\n return func(_this8.transition, _this8.newContainer);\n\n default:\n return func();\n }\n }, false);\n }\n }]);\n\n return _default;\n}();\n\nexport default _default;\n", "import { module } from 'modujs';\nimport modularLoad from 'modularload';\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n const load = new modularLoad({\n enterDelay: 0,\n transitions: {\n customTransition: {}\n }\n });\n\n load.on('loaded', (transition, oldContainer, newContainer) => {\n this.call('destroy', oldContainer, 'app');\n this.call('update', newContainer, 'app');\n });\n }\n}\n", "import { CSS_CLASS } from '../config'\n\n/**\n * Get an image meta data\n *\n * @param {HTMLImageElement} $img - The image element.\n * @return {object} The given image meta data\n */\n\nconst getImageMetadata = $img => ({\n url: $img.src,\n width: $img.naturalWidth,\n height: $img.naturalHeight,\n ratio: $img.naturalWidth / $img.naturalHeight,\n})\n\n\n/**\n * Load the given image.\n *\n * @param {string} url - The URI to lazy load into $el.\n * @param {object} options - An object of options\n * @return {void}\n */\n\nconst loadImage = (url, options = {}) => {\n return new Promise((resolve, reject) => {\n const $img = new Image()\n\n if (options.crossOrigin) {\n $img.crossOrigin = options.crossOrigin\n }\n\n const loadCallback = () => {\n resolve({\n element: $img,\n ...getImageMetadata($img),\n })\n }\n\n if($img.decode) {\n $img.src = url\n $img.decode().then(loadCallback).catch(e => {\n reject(e)\n })\n } else {\n $img.onload = loadCallback\n $img.onerror = (e) => {\n reject(e)\n }\n $img.src = url\n }\n })\n}\n\n\n/**\n * Lazy load the given image.\n *\n * @param {HTMLImageElement} $el - The image element.\n * @param {?string} url - The URI to lazy load into $el.\n * If falsey, the value of the `data-src` attribute on $el will be used as the URI.\n * @param {?function} callback - A function to call when the image is loaded.\n * @return {void}\n */\n\nconst LAZY_LOADED_IMAGES = []\nconst lazyLoadImage = async ($el, url, callback) => {\n let src = url ? url : $el.dataset.src\n\n let loadedImage = LAZY_LOADED_IMAGES.find(image => image.url === src)\n\n if (!loadedImage) {\n loadedImage = await loadImage(src)\n\n if (!loadedImage.url) {\n return\n }\n\n LAZY_LOADED_IMAGES.push(loadedImage)\n }\n\n if($el.src === src) {\n return\n }\n\n if ($el.tagName === 'IMG') {\n $el.src = loadedImage.url\n } else {\n $el.style.backgroundImage = `url(${loadedImage.url})`\n }\n\n requestAnimationFrame(() => {\n let lazyParent = $el.closest(`.${CSS_CLASS.LAZY_CONTAINER}`)\n\n if(lazyParent) {\n lazyParent.classList.add(CSS_CLASS.LAZY_LOADED)\n lazyParent.style.backgroundImage = ''\n }\n\n $el.classList.add(CSS_CLASS.LAZY_LOADED)\n\n callback?.()\n })\n}\n\n\nexport {\n getImageMetadata,\n loadImage,\n lazyLoadImage\n}\n", "// Clamp a value between a minimum and maximum value\r\nexport function clamp(min, input, max) {\r\n return Math.max(min, Math.min(input, max))\r\n}\r\n\r\n// Truncate a floating-point number to a specified number of decimal places\r\nexport function truncate(value, decimals = 0) {\r\n return parseFloat(value.toFixed(decimals))\r\n}\r\n\r\n// Linearly interpolate between two values using an amount (0 <= t <= 1)\r\nexport function lerp(x, y, t) {\r\n return (1 - t) * x + t * y\r\n}\r\n\r\n// http://www.rorydriscoll.com/2016/03/07/frame-rate-independent-damping-using-lerp/\r\nexport function damp(x, y, lambda, dt) {\r\n return lerp(x, y, 1 - Math.exp(-lambda * dt))\r\n}\r\n\r\n// Calculate the modulo of the dividend and divisor while keeping the result within the same sign as the divisor\r\n// https://anguscroll.com/just/just-modulo\r\nexport function modulo(n, d) {\r\n return ((n % d) + d) % d\r\n}\r\n", "import { clamp, damp } from './maths'\r\n\r\n// Animate class to handle value animations with lerping or easing\r\nexport class Animate {\r\n // Advance the animation by the given delta time\r\n advance(deltaTime) {\r\n if (!this.isRunning) return\r\n\r\n let completed = false\r\n\r\n if (this.lerp) {\r\n this.value = damp(this.value, this.to, this.lerp * 60, deltaTime)\r\n if (Math.round(this.value) === this.to) {\r\n this.value = this.to\r\n completed = true\r\n }\r\n } else {\r\n this.currentTime += deltaTime\r\n const linearProgress = clamp(0, this.currentTime / this.duration, 1)\r\n\r\n completed = linearProgress >= 1\r\n const easedProgress = completed ? 1 : this.easing(linearProgress)\r\n this.value = this.from + (this.to - this.from) * easedProgress\r\n }\r\n\r\n // Call the onUpdate callback with the current value and completed status\r\n\r\n this.onUpdate?.(this.value, completed)\r\n\r\n if (completed) {\r\n this.stop()\r\n }\r\n }\r\n\r\n // Stop the animation\r\n stop() {\r\n this.isRunning = false\r\n }\r\n\r\n // Set up the animation from a starting value to an ending value\r\n // with optional parameters for lerping, duration, easing, and onUpdate callback\r\n fromTo(\r\n from,\r\n to,\r\n { lerp = 0.1, duration = 1, easing = (t) => t, onStart, onUpdate }\r\n ) {\r\n this.from = this.value = from\r\n this.to = to\r\n this.lerp = lerp\r\n this.duration = duration\r\n this.easing = easing\r\n this.currentTime = 0\r\n this.isRunning = true\r\n\r\n onStart?.()\r\n this.onUpdate = onUpdate\r\n }\r\n}\r\n", "import { debounce } from './debounce'\r\n\r\nexport class Dimensions {\r\n constructor({ wrapper, content, autoResize = true } = {}) {\r\n this.wrapper = wrapper\r\n this.content = content\r\n\r\n if (autoResize) {\r\n const resize = debounce(this.resize, 250)\r\n\r\n if (this.wrapper !== window) {\r\n this.wrapperResizeObserver = new ResizeObserver(resize)\r\n this.wrapperResizeObserver.observe(this.wrapper)\r\n }\r\n\r\n this.contentResizeObserver = new ResizeObserver(resize)\r\n this.contentResizeObserver.observe(this.content)\r\n }\r\n\r\n this.resize()\r\n }\r\n\r\n destroy() {\r\n this.wrapperResizeObserver?.disconnect()\r\n this.contentResizeObserver?.disconnect()\r\n }\r\n\r\n resize = () => {\r\n this.onWrapperResize()\r\n this.onContentResize()\r\n }\r\n\r\n onWrapperResize = () => {\r\n if (this.wrapper === window) {\r\n this.width = window.innerWidth\r\n this.height = window.innerHeight\r\n } else {\r\n this.width = this.wrapper.clientWidth\r\n this.height = this.wrapper.clientHeight\r\n }\r\n }\r\n\r\n onContentResize = () => {\r\n this.scrollHeight = this.content.scrollHeight\r\n this.scrollWidth = this.content.scrollWidth\r\n }\r\n\r\n get limit() {\r\n return {\r\n x: this.scrollWidth - this.width,\r\n y: this.scrollHeight - this.height,\r\n }\r\n }\r\n}\r\n", "export function debounce(callback, delay) {\r\n let timer\r\n return function () {\r\n let args = arguments\r\n let context = this\r\n clearTimeout(timer)\r\n timer = setTimeout(function () {\r\n callback.apply(context, args)\r\n }, delay)\r\n }\r\n}\r\n", "export class Emitter {\r\n constructor() {\r\n this.events = {}\r\n }\r\n\r\n emit(event, ...args) {\r\n let callbacks = this.events[event] || []\r\n for (let i = 0, length = callbacks.length; i < length; i++) {\r\n callbacks[i](...args)\r\n }\r\n }\r\n\r\n on(event, cb) {\r\n // Add the callback to the event's callback list, or create a new list with the callback\r\n this.events[event]?.push(cb) || (this.events[event] = [cb])\r\n\r\n // Return an unsubscribe function\r\n return () => {\r\n this.events[event] = this.events[event]?.filter((i) => cb !== i)\r\n }\r\n }\r\n\r\n off(event, callback) {\r\n this.events[event] = this.events[event]?.filter((i) => callback !== i)\r\n }\r\n\r\n destroy() {\r\n this.events = {}\r\n }\r\n}\r\n", "import { Emitter } from './emitter'\r\nimport { clamp } from './maths'\r\n\r\nexport class VirtualScroll {\r\n constructor(\r\n element,\r\n { wheelMultiplier = 1, touchMultiplier = 2, normalizeWheel = false }\r\n ) {\r\n this.element = element\r\n this.wheelMultiplier = wheelMultiplier\r\n this.touchMultiplier = touchMultiplier\r\n this.normalizeWheel = normalizeWheel\r\n\r\n this.touchStart = {\r\n x: null,\r\n y: null,\r\n }\r\n\r\n this.emitter = new Emitter()\r\n\r\n this.element.addEventListener('wheel', this.onWheel, { passive: false })\r\n this.element.addEventListener('touchstart', this.onTouchStart, {\r\n passive: false,\r\n })\r\n this.element.addEventListener('touchmove', this.onTouchMove, {\r\n passive: false,\r\n })\r\n this.element.addEventListener('touchend', this.onTouchEnd, {\r\n passive: false,\r\n })\r\n }\r\n\r\n // Add an event listener for the given event and callback\r\n on(event, callback) {\r\n return this.emitter.on(event, callback)\r\n }\r\n\r\n // Remove all event listeners and clean up\r\n destroy() {\r\n this.emitter.destroy()\r\n\r\n this.element.removeEventListener('wheel', this.onWheel, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchstart', this.onTouchStart, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchmove', this.onTouchMove, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchend', this.onTouchEnd, {\r\n passive: false,\r\n })\r\n }\r\n\r\n // Event handler for 'touchstart' event\r\n onTouchStart = (event) => {\r\n const { clientX, clientY } = event.targetTouches\r\n ? event.targetTouches[0]\r\n : event\r\n\r\n this.touchStart.x = clientX\r\n this.touchStart.y = clientY\r\n\r\n this.lastDelta = {\r\n x: 0,\r\n y: 0,\r\n }\r\n }\r\n\r\n // Event handler for 'touchmove' event\r\n onTouchMove = (event) => {\r\n const { clientX, clientY } = event.targetTouches\r\n ? event.targetTouches[0]\r\n : event\r\n\r\n const deltaX = -(clientX - this.touchStart.x) * this.touchMultiplier\r\n const deltaY = -(clientY - this.touchStart.y) * this.touchMultiplier\r\n\r\n this.touchStart.x = clientX\r\n this.touchStart.y = clientY\r\n\r\n this.lastDelta = {\r\n x: deltaX,\r\n y: deltaY,\r\n }\r\n\r\n this.emitter.emit('scroll', {\r\n deltaX,\r\n deltaY,\r\n event,\r\n })\r\n }\r\n\r\n onTouchEnd = (event) => {\r\n this.emitter.emit('scroll', {\r\n deltaX: this.lastDelta.x,\r\n deltaY: this.lastDelta.y,\r\n event,\r\n })\r\n }\r\n\r\n // Event handler for 'wheel' event\r\n onWheel = (event) => {\r\n let { deltaX, deltaY } = event\r\n\r\n if (this.normalizeWheel) {\r\n deltaX = clamp(-100, deltaX, 100)\r\n deltaY = clamp(-100, deltaY, 100)\r\n }\r\n\r\n deltaX *= this.wheelMultiplier\r\n deltaY *= this.wheelMultiplier\r\n\r\n this.emitter.emit('scroll', { deltaX, deltaY, event })\r\n }\r\n}\r\n", "import { version } from '../package.json'\r\nimport { Animate } from './animate'\r\nimport { Dimensions } from './dimensions'\r\nimport { Emitter } from './emitter'\r\nimport { clamp, modulo } from './maths'\r\nimport { VirtualScroll } from './virtual-scroll'\r\n\r\n// Technical explanation\r\n// - listen to 'wheel' events\r\n// - prevent 'wheel' event to prevent scroll\r\n// - normalize wheel delta\r\n// - add delta to targetScroll\r\n// - animate scroll to targetScroll (smooth context)\r\n// - if animation is not running, listen to 'scroll' events (native context)\r\n\r\nexport default class Lenis {\r\n // isScrolling = true when scroll is animating\r\n // isStopped = true if user should not be able to scroll - enable/disable programmatically\r\n // isSmooth = true if scroll should be animated\r\n // isLocked = same as isStopped but enabled/disabled when scroll reaches target\r\n\r\n /**\r\n * @typedef {(t: number) => number} EasingFunction\r\n * @typedef {'vertical' | 'horizontal'} Orientation\r\n * @typedef {'vertical' | 'horizontal' | 'both'} GestureOrientation\r\n *\r\n * @typedef LenisOptions\r\n * @property {Window | HTMLElement} [wrapper]\r\n * @property {HTMLElement} [content]\r\n * @property {Window | HTMLElement} [wheelEventsTarget] // deprecated\r\n * @property {Window | HTMLElement} [eventsTarget]\r\n * @property {boolean} [smoothWheel]\r\n * @property {boolean} [smoothTouch]\r\n * @property {boolean} [syncTouch]\r\n * @property {number} [syncTouchLerp]\r\n * @property {number} [__iosNoInertiaSyncTouchLerp]\r\n * @property {number} [touchInertiaMultiplier]\r\n * @property {number} [duration]\r\n * @property {EasingFunction} [easing]\r\n * @property {number} [lerp]\r\n * @property {boolean} [infinite]\r\n * @property {Orientation} [orientation]\r\n * @property {GestureOrientation} [gestureOrientation]\r\n * @property {number} [touchMultiplier]\r\n * @property {number} [wheelMultiplier]\r\n * @property {boolean} [normalizeWheel]\r\n * @property {boolean} [autoResize]\r\n *\r\n * @param {LenisOptions}\r\n */\r\n constructor({\r\n wrapper = window,\r\n content = document.documentElement,\r\n wheelEventsTarget = wrapper, // deprecated\r\n eventsTarget = wheelEventsTarget,\r\n smoothWheel = true,\r\n smoothTouch = false,\r\n syncTouch = false,\r\n syncTouchLerp = 0.1,\r\n __iosNoInertiaSyncTouchLerp = 0.4, // should be 1 but had to leave 0.4 for iOS (testing purpose)\r\n touchInertiaMultiplier = 35,\r\n duration, // in seconds\r\n easing = (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),\r\n lerp = !duration && 0.1,\r\n infinite = false,\r\n orientation = 'vertical', // vertical, horizontal\r\n gestureOrientation = 'vertical', // vertical, horizontal, both\r\n touchMultiplier = 1,\r\n wheelMultiplier = 1,\r\n normalizeWheel = false,\r\n autoResize = true,\r\n } = {}) {\r\n window.lenisVersion = version\r\n\r\n // if wrapper is html or body, fallback to window\r\n if (wrapper === document.documentElement || wrapper === document.body) {\r\n wrapper = window\r\n }\r\n\r\n this.options = {\r\n wrapper,\r\n content,\r\n wheelEventsTarget,\r\n eventsTarget,\r\n smoothWheel,\r\n smoothTouch,\r\n syncTouch,\r\n syncTouchLerp,\r\n __iosNoInertiaSyncTouchLerp,\r\n touchInertiaMultiplier,\r\n duration,\r\n easing,\r\n lerp,\r\n infinite,\r\n gestureOrientation,\r\n orientation,\r\n touchMultiplier,\r\n wheelMultiplier,\r\n normalizeWheel,\r\n autoResize,\r\n }\r\n\r\n this.animate = new Animate()\r\n this.emitter = new Emitter()\r\n this.dimensions = new Dimensions({ wrapper, content, autoResize })\r\n this.toggleClass('lenis', true)\r\n\r\n this.velocity = 0\r\n this.isLocked = false\r\n this.isStopped = false\r\n this.isSmooth = syncTouch || smoothWheel || smoothTouch\r\n this.isScrolling = false\r\n this.targetScroll = this.animatedScroll = this.actualScroll\r\n\r\n this.options.wrapper.addEventListener('scroll', this.onScroll, {\r\n passive: false,\r\n })\r\n\r\n this.virtualScroll = new VirtualScroll(eventsTarget, {\r\n touchMultiplier,\r\n wheelMultiplier,\r\n normalizeWheel,\r\n })\r\n this.virtualScroll.on('scroll', this.onVirtualScroll)\r\n }\r\n\r\n destroy() {\r\n this.emitter.destroy()\r\n\r\n this.options.wrapper.removeEventListener('scroll', this.onScroll, {\r\n passive: false,\r\n })\r\n\r\n this.virtualScroll.destroy()\r\n this.dimensions.destroy()\r\n\r\n this.toggleClass('lenis', false)\r\n this.toggleClass('lenis-smooth', false)\r\n this.toggleClass('lenis-scrolling', false)\r\n this.toggleClass('lenis-stopped', false)\r\n this.toggleClass('lenis-locked', false)\r\n }\r\n\r\n on(event, callback) {\r\n return this.emitter.on(event, callback)\r\n }\r\n\r\n off(event, callback) {\r\n return this.emitter.off(event, callback)\r\n }\r\n\r\n setScroll(scroll) {\r\n // apply scroll value immediately\r\n if (this.isHorizontal) {\r\n this.rootElement.scrollLeft = scroll\r\n } else {\r\n this.rootElement.scrollTop = scroll\r\n }\r\n }\r\n\r\n onVirtualScroll = ({ deltaX, deltaY, event }) => {\r\n // keep zoom feature\r\n if (event.ctrlKey) return\r\n\r\n const isTouch = event.type.includes('touch')\r\n const isWheel = event.type.includes('wheel')\r\n\r\n if (\r\n (this.options.gestureOrientation === 'both' &&\r\n deltaX === 0 &&\r\n deltaY === 0) || // \"touchend\" events prevents \"click\"\r\n (this.options.gestureOrientation === 'vertical' && deltaY === 0) || // trackpad previous/next page gesture\r\n (this.options.gestureOrientation === 'horizontal' && deltaX === 0) ||\r\n (isTouch &&\r\n this.options.gestureOrientation === 'vertical' &&\r\n this.scroll === 0 &&\r\n !this.options.infinite &&\r\n deltaY <= 0) // touch pull to refresh\r\n )\r\n return\r\n\r\n // catch if scrolling on nested scroll elements\r\n let composedPath = event.composedPath()\r\n composedPath = composedPath.slice(0, composedPath.indexOf(this.rootElement)) // remove parents elements\r\n\r\n if (\r\n !!composedPath.find(\r\n (node) =>\r\n node.hasAttribute?.('data-lenis-prevent') ||\r\n (isTouch && node.hasAttribute?.('data-lenis-prevent-touch')) ||\r\n (isWheel && node.hasAttribute?.('data-lenis-prevent-wheel')) ||\r\n node.classList?.contains('lenis') // nested lenis instance\r\n )\r\n )\r\n return\r\n\r\n if (this.isStopped || this.isLocked) {\r\n event.preventDefault()\r\n return\r\n }\r\n\r\n this.isSmooth =\r\n ((this.options.smoothTouch || this.options.syncTouch) && isTouch) ||\r\n (this.options.smoothWheel && isWheel)\r\n\r\n if (!this.isSmooth) {\r\n this.isScrolling = false\r\n this.animate.stop()\r\n return\r\n }\r\n\r\n event.preventDefault()\r\n\r\n let delta = deltaY\r\n if (this.options.gestureOrientation === 'both') {\r\n delta = Math.abs(deltaY) > Math.abs(deltaX) ? deltaY : deltaX\r\n } else if (this.options.gestureOrientation === 'horizontal') {\r\n delta = deltaX\r\n }\r\n\r\n const syncTouch = isTouch && this.options.syncTouch\r\n const isTouchEnd = isTouch && event.type === 'touchend'\r\n const hasTouchInertia = isTouchEnd && Math.abs(delta) > 1\r\n if (hasTouchInertia) {\r\n delta = this.velocity * this.options.touchInertiaMultiplier\r\n }\r\n\r\n this.scrollTo(this.targetScroll + delta, {\r\n programmatic: false,\r\n ...(syncTouch && {\r\n lerp: hasTouchInertia\r\n ? this.syncTouchLerp\r\n : this.options.__iosNoInertiaSyncTouchLerp,\r\n }),\r\n })\r\n }\r\n\r\n resize() {\r\n this.dimensions.resize()\r\n }\r\n\r\n emit() {\r\n this.emitter.emit('scroll', this)\r\n }\r\n\r\n onScroll = () => {\r\n if (!this.isScrolling) {\r\n const lastScroll = this.animatedScroll\r\n this.animatedScroll = this.targetScroll = this.actualScroll\r\n this.velocity = 0\r\n this.direction = Math.sign(this.animatedScroll - lastScroll)\r\n this.emit()\r\n }\r\n }\r\n\r\n reset() {\r\n this.isLocked = false\r\n this.isScrolling = false\r\n this.velocity = 0\r\n this.animate.stop()\r\n }\r\n\r\n start() {\r\n this.isStopped = false\r\n\r\n this.reset()\r\n }\r\n\r\n stop() {\r\n this.isStopped = true\r\n this.animate.stop()\r\n\r\n this.reset()\r\n }\r\n\r\n raf(time) {\r\n const deltaTime = time - (this.time || time)\r\n this.time = time\r\n\r\n this.animate.advance(deltaTime * 0.001)\r\n }\r\n\r\n scrollTo(\r\n target,\r\n {\r\n offset = 0,\r\n immediate = false,\r\n lock = false,\r\n duration = this.options.duration,\r\n easing = this.options.easing,\r\n lerp = !duration && this.options.lerp,\r\n onComplete = null,\r\n force = false, // scroll even if stopped\r\n programmatic = true, // called from outside of the class\r\n } = {}\r\n ) {\r\n if ((this.isStopped || this.isLocked) && !force) return\r\n\r\n // keywords\r\n if (['top', 'left', 'start'].includes(target)) {\r\n target = 0\r\n } else if (['bottom', 'right', 'end'].includes(target)) {\r\n target = this.limit\r\n } else {\r\n let node\r\n\r\n if (typeof target === 'string') {\r\n // CSS selector\r\n node = document.querySelector(target)\r\n } else if (target?.nodeType) {\r\n // Node element\r\n node = target\r\n }\r\n\r\n if (node) {\r\n if (this.options.wrapper !== window) {\r\n // nested scroll offset correction\r\n const wrapperRect = this.options.wrapper.getBoundingClientRect()\r\n offset -= this.isHorizontal ? wrapperRect.left : wrapperRect.top\r\n }\r\n\r\n const rect = node.getBoundingClientRect()\r\n\r\n target =\r\n (this.isHorizontal ? rect.left : rect.top) + this.animatedScroll\r\n }\r\n }\r\n\r\n if (typeof target !== 'number') return\r\n\r\n target += offset\r\n target = Math.round(target)\r\n\r\n if (this.options.infinite) {\r\n if (programmatic) {\r\n this.targetScroll = this.animatedScroll = this.scroll\r\n }\r\n } else {\r\n target = clamp(0, target, this.limit)\r\n }\r\n\r\n if (immediate) {\r\n this.animatedScroll = this.targetScroll = target\r\n this.setScroll(this.scroll)\r\n this.reset()\r\n onComplete?.(this)\r\n return\r\n }\r\n\r\n if (!programmatic) {\r\n if (target === this.targetScroll) return\r\n\r\n this.targetScroll = target\r\n }\r\n\r\n this.animate.fromTo(this.animatedScroll, target, {\r\n duration,\r\n easing,\r\n lerp,\r\n onStart: () => {\r\n // started\r\n if (lock) this.isLocked = true\r\n this.isScrolling = true\r\n },\r\n onUpdate: (value, completed) => {\r\n this.isScrolling = true\r\n\r\n // updated\r\n this.velocity = value - this.animatedScroll\r\n this.direction = Math.sign(this.velocity)\r\n\r\n this.animatedScroll = value\r\n this.setScroll(this.scroll)\r\n\r\n if (programmatic) {\r\n // wheel during programmatic should stop it\r\n this.targetScroll = value\r\n }\r\n\r\n if (!completed) this.emit()\r\n\r\n if (completed) {\r\n // avoid emitting twice (onScroll)\r\n requestAnimationFrame(() => {\r\n this.reset()\r\n this.emit()\r\n onComplete?.(this)\r\n })\r\n }\r\n },\r\n })\r\n }\r\n\r\n get rootElement() {\r\n return this.options.wrapper === window\r\n ? this.options.content\r\n : this.options.wrapper\r\n }\r\n\r\n get limit() {\r\n return this.dimensions.limit[this.isHorizontal ? 'x' : 'y']\r\n }\r\n\r\n get isHorizontal() {\r\n return this.options.orientation === 'horizontal'\r\n }\r\n\r\n get actualScroll() {\r\n // value browser takes into account\r\n return this.isHorizontal\r\n ? this.rootElement.scrollLeft\r\n : this.rootElement.scrollTop\r\n }\r\n\r\n get scroll() {\r\n return this.options.infinite\r\n ? modulo(this.animatedScroll, this.limit)\r\n : this.animatedScroll\r\n }\r\n\r\n get progress() {\r\n // avoid progress to be NaN\r\n return this.limit === 0 ? 1 : this.scroll / this.limit\r\n }\r\n\r\n get isSmooth() {\r\n return this.__isSmooth\r\n }\r\n\r\n set isSmooth(value) {\r\n if (this.__isSmooth !== value) {\r\n this.__isSmooth = value\r\n this.toggleClass('lenis-smooth', value)\r\n }\r\n }\r\n\r\n get isScrolling() {\r\n return this.__isScrolling\r\n }\r\n\r\n set isScrolling(value) {\r\n if (this.__isScrolling !== value) {\r\n this.__isScrolling = value\r\n this.toggleClass('lenis-scrolling', value)\r\n }\r\n }\r\n\r\n get isStopped() {\r\n return this.__isStopped\r\n }\r\n\r\n set isStopped(value) {\r\n if (this.__isStopped !== value) {\r\n this.__isStopped = value\r\n this.toggleClass('lenis-stopped', value)\r\n }\r\n }\r\n\r\n get isLocked() {\r\n return this.__isLocked\r\n }\r\n\r\n set isLocked(value) {\r\n if (this.__isLocked !== value) {\r\n this.__isLocked = value\r\n this.toggleClass('lenis-locked', value)\r\n }\r\n }\r\n\r\n get className() {\r\n let className = 'lenis'\r\n if (this.isStopped) className += ' lenis-stopped'\r\n if (this.isLocked) className += ' lenis-locked'\r\n if (this.isScrolling) className += ' lenis-scrolling'\r\n if (this.isSmooth) className += ' lenis-smooth'\r\n return className\r\n }\r\n\r\n toggleClass(name, value) {\r\n this.rootElement.classList.toggle(name, value)\r\n this.emitter.emit('className change', this)\r\n }\r\n}\r\n", "/**\n * Intersection Observer\n *\n * Detecting visibility of an element in the viewport.\n *\n * Features functions to:\n *\n * - Trigger inview/outOfView callbacks\n * - If the element has a requestAnimationFrame dependency, set interactivy status for the ScrollElement Class\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API}\n */\n\nimport { IIOOptions } from '../types';\nimport ScrollElement from './ScrollElement';\n\nexport default class IO {\n public scrollElements: ScrollElement[];\n private rootMargin: string;\n private IORaf: boolean;\n private observer!: IntersectionObserver;\n\n constructor({\n scrollElements,\n rootMargin = '-1px -1px -1px -1px',\n IORaf,\n }: IIOOptions) {\n // Parameters\n this.scrollElements = scrollElements;\n this.rootMargin = rootMargin;\n this.IORaf = IORaf;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize Intersection Observer.\n *\n * @private\n */\n private _init() {\n // Options\n const observerOptions = {\n rootMargin: this.rootMargin,\n };\n\n // Callback\n const onIntersect = (entries: IntersectionObserverEntry[]) => {\n entries.forEach((entry) => {\n const $targetItem: ScrollElement | undefined =\n this.scrollElements.find(\n (item) => item.$el === entry.target\n );\n\n if (entry.isIntersecting) {\n $targetItem && ($targetItem.isAlreadyIntersected = true);\n this._setInview(entry);\n } else if ($targetItem && $targetItem.isAlreadyIntersected) {\n this._setOutOfView(entry);\n }\n });\n };\n\n // Instance\n this.observer = new IntersectionObserver(onIntersect, observerOptions);\n\n // Observe each default elements\n for (const scrollElement of this.scrollElements) {\n const $scrollElement = scrollElement.$el;\n this.observe($scrollElement);\n }\n }\n\n /**\n * Lifecyle - Destroy Intersection Observer.\n */\n public destroy() {\n this.observer.disconnect();\n }\n\n /**\n * Subscribe element to the Intersection Observer.\n *\n * @param {HTMLElement} $scrollElement - DOM Element to observe.\n */\n public observe($scrollElement: HTMLElement) {\n if (!$scrollElement) {\n return;\n }\n\n this.observer.observe($scrollElement);\n }\n\n /**\n * Unsubscribe element to the Intersection Observer.\n *\n * @param {HTMLElement} $scrollElement - DOM Element to unobserve.\n */\n public unobserve($scrollElement: HTMLElement) {\n if (!$scrollElement) {\n return;\n }\n\n this.observer.unobserve($scrollElement);\n }\n\n /**\n * Find ScrollElementReference instance and trigger inview callbacks.\n *\n * @private\n *\n * @param {IntersectionObserverEntry} entry - DOM Element to observe.\n */\n private _setInview(entry: IntersectionObserverEntry) {\n const scrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === entry.target\n );\n\n this.IORaf && scrollElement?.setInteractivityOn();\n !this.IORaf && scrollElement?.setInview();\n }\n\n /**\n * Find ScrollElementReference instance and trigger out of view callbacks.\n *\n * @private\n *\n * @param {IntersectionObserverEntry} entry - DOM Element to observe.\n */\n private _setOutOfView(entry: IntersectionObserverEntry) {\n const scrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === entry.target\n );\n\n this.IORaf && scrollElement?.setInteractivityOff();\n !this.IORaf && scrollElement?.setOutOfView();\n\n // Unobserve if element doesn't have repeat attribute\n if (!scrollElement?.attributes.scrollRepeat && !this.IORaf) {\n this.unobserve(entry.target as HTMLElement);\n }\n }\n}\n", "// https://greensock.com/docs/v3/GSAP/gsap.utils\n\n/**\n * Clamp a value to fit within a specific range (ex: clamp(0, 100, -12) --> 0).\n *\n * @param {number} min - Minimum value expected.\n * @param {number} max - Maximum value expected.\n * @param {number} value - Current value.\n *\n * @returns {number} - Clamped value.\n */\nexport function clamp(min: number, max: number, value: number): number {\n return value < min ? min : value > max ? max : value;\n}\n\n/**\n * Map one range to another (ex: mapRange(-10, 10, 0, 100, 5) --> 75).\n *\n * @param {number} inMin - Current minimum value.\n * @param {number} inMax - Current maximum value.\n * @param {number} outMin - Maximum value expected.\n * @param {number} outMax - Maximum value expected.\n * @param {number} value - Current value.\n *\n * @returns {number} - New value that should be between minimum value expected and maximum value.\n */\nexport function mapRange(\n inMin: number,\n inMax: number,\n outMin: number,\n outMax: number,\n value: number\n): number {\n const inRange = inMax - inMin;\n const outRange = outMax - outMin;\n return outMin + (((value - inMin) / inRange) * outRange || 0);\n}\n\n/**\n * Map a number within a range to a progress between 0 to 1 (ex: normalize(100, 200, 150) --> 0.5).\n *\n * @param {number} min - Current minimum value.\n * @param {number} max - Current maximum value.\n * @param {number} value - Current value.\n *\n * @returns {number} - New value that should be between 0 and 1.\n */\nexport function normalize(min: number, max: number, value: number): number {\n return mapRange(min, max, 0, 1, value);\n}\n\n/**\n * Get closest number from an array.\n *\n * @param {number[]} array - Numbers array.\n * @param {number} target - Reference value.\n *\n * @returns {number} - Closest number.\n */\nexport function closestNumber(array: number[], target: number): number {\n return array.reduce((prev, curr) => {\n return Math.abs(curr - target) < Math.abs(prev - target) ? curr : prev;\n });\n}\n", "/**\n * Scroll Element\n *\n * Give tools to compute element progress in the viewport and triggers callbacks to animate it.\n *\n * Features functions to:\n *\n * - scrollClass - Add a custom class when the element is intersected by the offset\n * - scrollOffset - Determine offsets to intersect the element\n * - scrollPosition - Determine the element positions to consider an element as intersected.\n * - scrollModuleProgress - Send scroll progress to modular module that have a specific method (PROGRESS_MODULAR_METHOD)\n * - scrollCssProgress - Add a specific css variable (PROGRESS_CSS_VAR) that store the scroll progress\n * - scrollEventProgress - Send scroll progress to custom event listeners.\n * - scrollSpeed - Add a scroll multiplicator to create a parallax effect\n * - scrollRepeat - Repeat the option to trigger animation each time the element is intersected\n * - scrollCall - Call a custom event or a modular callback when the element is intersected\n */\n\nimport {\n IModular,\n IScrollElementOptions,\n IScrollElementAttributes,\n IScrollElementIntersection,\n IScrollElementMetrics,\n IProgressModularModules,\n IScrollElementCallbacksValues,\n scrollCallWay,\n scrollCallFrom,\n scrollOrientation,\n} from '../types';\nimport { clamp, closestNumber, normalize, mapRange } from '../utils/maths';\n\n/** Constants */\nconst INVIEW_CLASS = 'is-inview';\nconst PROGRESS_CSS_VAR = '--progress';\nconst PROGRESS_MODULAR_METHOD = 'onScrollProgress';\n\nexport default class ScrollElement {\n public $el: HTMLElement;\n public id: number;\n public needRaf: boolean;\n public attributes: IScrollElementAttributes;\n public scrollOrientation: scrollOrientation;\n public isAlreadyIntersected: boolean;\n\n private intersection: IScrollElementIntersection;\n private metrics: IScrollElementMetrics;\n private currentScroll: number;\n private translateValue: number;\n private progress: number;\n private lastProgress: number | null;\n private modularInstance?: IModular;\n private progressModularModules: IProgressModularModules[];\n private isInview: boolean;\n private isInteractive: boolean;\n private isInFold: boolean;\n private isFirstResize: boolean;\n\n private subscribeElementUpdateFn: (scrollElement: ScrollElement) => void;\n private unsubscribeElementUpdateFn: (scrollElement: ScrollElement) => void;\n\n constructor({\n $el,\n id,\n modularInstance,\n subscribeElementUpdateFn,\n unsubscribeElementUpdateFn,\n needRaf,\n scrollOrientation,\n }: IScrollElementOptions) {\n // Scroll DOM element\n this.$el = $el;\n // Unique ID\n this.id = id;\n // RAF option\n this.needRaf = needRaf;\n // Scroll Direction\n this.scrollOrientation = scrollOrientation;\n // Modular.js\n this.modularInstance = modularInstance;\n // Parent's callbacks\n this.subscribeElementUpdateFn = subscribeElementUpdateFn;\n this.unsubscribeElementUpdateFn = unsubscribeElementUpdateFn;\n\n // Attributes\n this.attributes = {\n scrollClass: this.$el.dataset['scrollClass'] ?? INVIEW_CLASS,\n scrollOffset: this.$el.dataset['scrollOffset'] ?? '0,0',\n scrollPosition: this.$el.dataset['scrollPosition'] ?? 'start,end',\n scrollModuleProgress:\n this.$el.dataset['scrollModuleProgress'] != null,\n scrollCssProgress: this.$el.dataset['scrollCssProgress'] != null,\n scrollEventProgress:\n this.$el.dataset['scrollEventProgress'] ?? null,\n scrollSpeed:\n this.$el.dataset['scrollSpeed'] != null\n ? parseFloat(this.$el.dataset['scrollSpeed'])\n : null,\n scrollRepeat: this.$el.dataset['scrollRepeat'] != null,\n scrollCall: this.$el.dataset['scrollCall'] ?? null,\n scrollCallSelf: this.$el.dataset['scrollCallSelf'] != null,\n scrollIgnoreFold: this.$el.dataset['scrollIgnoreFold'] != null,\n scrollEnableTouchSpeed:\n this.$el.dataset['scrollEnableTouchSpeed'] != null,\n };\n\n // Limits\n this.intersection = {\n start: 0,\n end: 0,\n };\n\n // Metrics\n this.metrics = {\n offsetStart: 0,\n offsetEnd: 0,\n bcr: {} as DOMRect,\n };\n\n // Scroll Values\n this.currentScroll =\n this.scrollOrientation === 'vertical'\n ? window.scrollY\n : window.scrollX;\n\n // Parallax\n this.translateValue = 0;\n\n // Progress\n this.progress = 0;\n this.lastProgress = null;\n this.progressModularModules = [];\n\n // Inview\n this.isInview = false;\n this.isInteractive = false;\n this.isAlreadyIntersected = false;\n this.isInFold = false;\n this.isFirstResize = true;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize progress tracking.\n *\n * @private\n */\n private _init() {\n if (!this.needRaf) {\n return;\n }\n\n // Prepare modules progress\n if (this.modularInstance && this.attributes.scrollModuleProgress) {\n this._getProgressModularModules();\n }\n\n // First resize to compute all values\n this._resize();\n }\n\n /**\n * Callback - Resize callback\n */\n public onResize({ currentScroll }: IScrollElementCallbacksValues) {\n this.currentScroll = currentScroll;\n this._resize();\n }\n\n /**\n * Callback - RAF callback\n */\n public onRender({ currentScroll, smooth }: IScrollElementCallbacksValues) {\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n this.currentScroll = currentScroll;\n this._computeProgress();\n\n // Parallax\n if (\n this.attributes.scrollSpeed &&\n !isNaN(this.attributes.scrollSpeed)\n ) {\n // if touch detected or smooth disabled\n if (!this.attributes.scrollEnableTouchSpeed && !smooth) {\n if (this.translateValue) {\n this.$el.style.transform = `translate3d(0, 0, 0)`;\n }\n this.translateValue = 0;\n\n // if mousewheel or smooth enabled\n } else {\n // Check fold condition\n if (this.isInFold) {\n const progress = Math.max(0, this.progress);\n this.translateValue =\n progress * wSize * this.attributes.scrollSpeed * -1;\n } else {\n const progress = mapRange(0, 1, -1, 1, this.progress);\n this.translateValue =\n progress * wSize * this.attributes.scrollSpeed * -1;\n }\n\n this.$el.style.transform =\n this.scrollOrientation === 'vertical'\n ? `translate3d(0, ${this.translateValue}px, 0)`\n : `translate3d(${this.translateValue}px, 0, 0)`;\n }\n }\n }\n\n /**\n * Inview callback\n */\n public setInview() {\n if (this.isInview) {\n return;\n }\n\n this.isInview = true;\n this.$el.classList.add(this.attributes.scrollClass);\n\n const way: scrollCallWay = 'enter';\n const from: scrollCallFrom = this._getScrollCallFrom();\n this.attributes.scrollCall && this._dispatchCall(way, from);\n }\n\n /**\n * Out of view callback\n */\n public setOutOfView() {\n if (!(this.isInview && this.attributes.scrollRepeat)) {\n return;\n }\n\n this.isInview = false;\n this.$el.classList.remove(this.attributes.scrollClass);\n\n const way: scrollCallWay = 'leave';\n const from: scrollCallFrom = this._getScrollCallFrom();\n this.attributes.scrollCall && this._dispatchCall(way, from);\n }\n\n /**\n * Switch interactivity on to subscribe the instance to the RAF\n * and start calculations.\n */\n public setInteractivityOn() {\n if (this.isInteractive) {\n return;\n }\n\n this.isInteractive = true;\n this.subscribeElementUpdateFn(this);\n }\n\n /**\n * Switch interactivity off to unsubscribe the instance to the RAF\n * and stop calculations.\n */\n public setInteractivityOff() {\n if (!this.isInteractive) {\n return;\n }\n\n this.isInteractive = false;\n this.unsubscribeElementUpdateFn(this);\n\n // Force progress to progress limit when the element is out\n this.lastProgress != null &&\n this._computeProgress(closestNumber([0, 1], this.lastProgress));\n }\n\n /**\n * Resize method that compute the element's values.\n *\n * @private\n */\n private _resize() {\n this.metrics.bcr = this.$el.getBoundingClientRect();\n this._computeMetrics();\n this._computeIntersection();\n\n // First resize logic\n if (this.isFirstResize) {\n this.isFirstResize = false;\n // Dispatch default call if the element is in fold.\n if (this.isInFold) {\n this.setInview();\n }\n }\n }\n\n /**\n * Compute element's offsets and determine if the element is in fold.\n *\n * @private\n */\n private _computeMetrics() {\n const { top, left, height, width } = this.metrics.bcr;\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n const metricsStart = this.scrollOrientation === 'vertical' ? top : left;\n const metricsSize =\n this.scrollOrientation === 'vertical' ? height : width;\n\n this.metrics.offsetStart =\n this.currentScroll + metricsStart - this.translateValue;\n this.metrics.offsetEnd = this.metrics.offsetStart + metricsSize;\n\n if (\n this.metrics.offsetStart < wSize &&\n !this.attributes.scrollIgnoreFold\n ) {\n this.isInFold = true;\n } else {\n this.isInFold = false;\n }\n }\n\n /**\n * Compute intersection values depending on the context.\n *\n * @private\n */\n private _computeIntersection() {\n // Window size\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n\n // Metrics size\n const metricsSize =\n this.scrollOrientation === 'vertical'\n ? this.metrics.bcr.height\n : this.metrics.bcr.width;\n\n // Offset\n const offset = this.attributes.scrollOffset.split(',');\n const offsetStart = offset[0] != undefined ? offset[0].trim() : '0';\n const offsetEnd = offset[1] != undefined ? offset[1].trim() : '0';\n\n // Positions\n const scrollPosition = this.attributes.scrollPosition.split(',');\n let scrollPositionStart =\n scrollPosition[0] != undefined ? scrollPosition[0].trim() : 'start';\n const scrollPositionEnd =\n scrollPosition[1] != undefined ? scrollPosition[1].trim() : 'end';\n\n // Viewport\n const viewportStart = offsetStart.includes('%')\n ? wSize * parseInt(offsetStart.replace('%', '').trim()) * 0.01\n : parseInt(offsetStart);\n const viewportEnd = offsetEnd.includes('%')\n ? wSize * parseInt(offsetEnd.replace('%', '').trim()) * 0.01\n : parseInt(offsetEnd);\n\n // Fold exception\n if (this.isInFold) {\n scrollPositionStart = 'fold';\n }\n\n // Define Intersection Start\n switch (scrollPositionStart) {\n case 'start':\n this.intersection.start =\n this.metrics.offsetStart - wSize + viewportStart;\n break;\n\n case 'middle':\n this.intersection.start =\n this.metrics.offsetStart -\n wSize +\n viewportStart +\n metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.start =\n this.metrics.offsetStart -\n wSize +\n viewportStart +\n metricsSize;\n break;\n\n case 'fold':\n this.intersection.start = 0;\n break;\n\n default:\n this.intersection.start =\n this.metrics.offsetStart - wSize + viewportStart;\n break;\n }\n\n // Define Intersection End\n switch (scrollPositionEnd) {\n case 'start':\n this.intersection.end = this.metrics.offsetStart - viewportEnd;\n break;\n\n case 'middle':\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize;\n break;\n\n default:\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize;\n break;\n }\n\n // Avoid to have the end < the start intersection >\n if (this.intersection.end <= this.intersection.start) {\n switch (scrollPositionEnd) {\n case 'start':\n this.intersection.end = this.intersection.start + 1;\n break;\n\n case 'middle':\n this.intersection.end =\n this.intersection.start + metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.end =\n this.intersection.start + metricsSize;\n break;\n\n default:\n this.intersection.end = this.intersection.start + 1;\n break;\n }\n }\n }\n\n /**\n * Compute the scroll progress of the element depending\n * on its intersection values.\n *\n * @private\n *\n * @param {number} [forcedProgress] - Value to force progress.\n */\n private _computeProgress(forcedProgress?: number) {\n // Progress\n const progress =\n forcedProgress ??\n clamp(\n 0,\n 1,\n normalize(\n this.intersection.start,\n this.intersection.end,\n this.currentScroll\n )\n );\n\n this.progress = progress;\n\n if (progress != this.lastProgress) {\n this.lastProgress = progress;\n\n // Set the element's progress to the css variable\n this.attributes.scrollCssProgress && this._setCssProgress(progress);\n\n // Set the element's progress to the custom event listeners\n this.attributes.scrollEventProgress &&\n this._setCustomEventProgress(progress);\n\n // Set the element's progress to inline modules\n if (this.attributes.scrollModuleProgress) {\n for (const modularModules of this.progressModularModules) {\n this.modularInstance &&\n this.modularInstance.call(\n PROGRESS_MODULAR_METHOD,\n progress,\n modularModules.moduleName,\n modularModules.moduleId\n );\n }\n }\n\n // Logic to trigger the inview/out of view callbacks\n progress > 0 && progress < 1 && this.setInview();\n progress === 0 && this.setOutOfView();\n progress === 1 && this.setOutOfView();\n }\n }\n\n /**\n * Set the element's progress to a specific css variable.\n *\n * @private\n *\n * @param {number} [currentProgress] - Progress value.\n */\n _setCssProgress(currentProgress = 0) {\n this.$el.style.setProperty(\n PROGRESS_CSS_VAR,\n currentProgress.toString()\n );\n }\n\n /**\n * Set the element's progress to the custom event listeners.\n *\n * @private\n *\n * @param {number} [currentProgress] - Progress value.\n */\n _setCustomEventProgress(currentProgress = 0) {\n const customEventName = this.attributes.scrollEventProgress;\n\n if (!customEventName) return;\n\n const customEvent = new CustomEvent(customEventName, {\n detail: {\n target: this.$el,\n progress: currentProgress,\n },\n });\n window.dispatchEvent(customEvent);\n }\n\n /**\n * Get modular modules that can listen the element's progress.\n *\n * @private\n */\n _getProgressModularModules() {\n if (!this.modularInstance) {\n return;\n }\n\n const modulesIdNames = Object.keys(this.$el.dataset).filter((key) =>\n key.includes('module')\n );\n const modules: any[] = Object.entries(this.modularInstance.modules);\n\n if (!modulesIdNames.length) {\n return;\n }\n\n for (const modulesIdName of modulesIdNames) {\n const moduleId = this.$el.dataset[modulesIdName];\n\n if (!moduleId) {\n return;\n }\n\n for (const module of modules) {\n const [moduleName, moduleObj] = module;\n\n if (moduleId in moduleObj) {\n this.progressModularModules.push({\n moduleName,\n moduleId,\n });\n }\n }\n }\n }\n\n /**\n * Function to get scroll call from.\n *\n * @private\n */\n _getScrollCallFrom(): scrollCallFrom {\n const closestIntersectionValue = closestNumber(\n [this.intersection.start, this.intersection.end],\n this.currentScroll\n );\n return this.intersection.start === closestIntersectionValue\n ? 'start'\n : 'end';\n }\n\n /**\n * Function to dispatch a custom event or call a modular callback.\n *\n * @private\n *\n * @param {scrollCallWay} way - Enter or leave.\n * @param {scrollCallFrom} from - Start or end.\n */\n _dispatchCall(way: scrollCallWay, from: scrollCallFrom) {\n const callParameters = this.attributes.scrollCall?.split(',');\n const callSelf = this.attributes?.scrollCallSelf;\n\n if (callParameters && callParameters.length > 1) {\n // Using Modular.js (https://github.com/modularorg/modularjs)\n const [func, moduleName, moduleId] = callParameters;\n let targetModuleId;\n\n // If the module is set on the scroll element\n if (callSelf) {\n targetModuleId = this.$el.dataset[`module${moduleName.trim()}`];\n } else {\n targetModuleId = moduleId;\n }\n\n this.modularInstance &&\n this.modularInstance.call(\n func.trim(),\n {\n target: this.$el,\n way,\n from,\n },\n moduleName.trim(),\n targetModuleId?.trim()\n );\n } else if (callParameters) {\n // Using CustomEvent API (https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent)\n const [customEventName] = callParameters;\n const customEvent = new CustomEvent(customEventName, {\n detail: {\n target: this.$el,\n way,\n from,\n },\n });\n window.dispatchEvent(customEvent);\n }\n }\n}\n", "/**\n * Integrates Lenis with Locomotive's built-in animation system\n */\n\nimport {\n CoreOptions,\n IModular,\n IScrollElementCallbacksValues,\n scrollOrientation,\n} from '../types';\nimport IO from './IO';\nimport ScrollElement from './ScrollElement';\n\n/** Defined attributes that need a requestAnimationFrame */\nconst ATTRIBUTES_THAT_NEED_RAF = [\n 'scrollOffset',\n 'scrollPosition',\n 'scrollModuleProgress',\n 'scrollCssProgress',\n 'scrollEventProgress',\n 'scrollSpeed',\n];\n\n/** Default root margins */\nconst TRIGGER_ROOT_MARGIN = '-1px -1px -1px -1px';\nconst RAF_ROOT_MARGIN = '100% 100% 100% 100%'; // Add 100vh top/bottom && 100vw left/right to use a biggest value with data-scroll-speed\n\nexport default class Core {\n private $scrollContainer!: HTMLElement;\n private modularInstance?: IModular;\n private triggerRootMargin!: string;\n private rafRootMargin!: string;\n private scrollElements!: ScrollElement[];\n private triggeredScrollElements!: ScrollElement[];\n private RAFScrollElements!: ScrollElement[];\n private scrollElementsToUpdate!: ScrollElement[];\n private IOTriggerInstance!: IO;\n private IORafInstance!: IO;\n private scrollOrientation!: scrollOrientation;\n\n constructor({\n $el,\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n scrollOrientation,\n }: CoreOptions) {\n if (!$el) {\n console.error('Please provide a DOM Element as scrollContainer');\n return;\n }\n\n // Scroll container\n this.$scrollContainer = $el;\n\n // Modular.js\n this.modularInstance = modularInstance;\n\n // Scroll Direction\n this.scrollOrientation = scrollOrientation;\n\n // IO Margins\n this.triggerRootMargin = triggerRootMargin ?? TRIGGER_ROOT_MARGIN;\n this.rafRootMargin = rafRootMargin ?? RAF_ROOT_MARGIN;\n\n // ScrollElements arrays\n this.scrollElements = [];\n this.triggeredScrollElements = [];\n this.RAFScrollElements = [];\n this.scrollElementsToUpdate = [];\n\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize the core.\n *\n * @private\n */\n private _init() {\n const $scrollElements =\n this.$scrollContainer.querySelectorAll('[data-scroll]');\n\n const $scrollElementsArr = Array.from($scrollElements) as HTMLElement[]\n this._subscribeScrollElements($scrollElementsArr);\n\n // Trigger IO\n this.IOTriggerInstance = new IO({\n scrollElements: [...this.triggeredScrollElements],\n rootMargin: this.triggerRootMargin,\n IORaf: false,\n });\n\n // Raf IO\n this.IORafInstance = new IO({\n scrollElements: [...this.RAFScrollElements],\n rootMargin: this.rafRootMargin,\n IORaf: true,\n });\n }\n\n /**\n * Lifecyle - Destroy core.\n */\n public destroy() {\n this.IOTriggerInstance.destroy();\n this.IORafInstance.destroy();\n this._unsubscribeAllScrollElements();\n }\n\n /**\n * Callback - Resize callback.\n */\n onResize({ currentScroll }: IScrollElementCallbacksValues) {\n for (const scrollElement of this.RAFScrollElements) {\n scrollElement.onResize({\n currentScroll,\n } as IScrollElementCallbacksValues);\n }\n }\n\n /**\n * Callback - RAF callback.\n */\n onRender({ currentScroll, smooth }: IScrollElementCallbacksValues) {\n for (const scrollElement of this.scrollElementsToUpdate) {\n scrollElement.onRender({\n currentScroll,\n smooth,\n } as IScrollElementCallbacksValues);\n }\n }\n\n /**\n * Remove items from lists of scroll elements and compute all new values.\n *\n * @param {HTMLElement} $oldContainer - HTMLElement that contains data-scroll elements to unsubscribe\n */\n removeScrollElements($oldContainer: HTMLElement) {\n const $scrollElementsToRemove =\n $oldContainer.querySelectorAll('[data-scroll]');\n\n if (!$scrollElementsToRemove.length) return;\n\n // 1. Remove from IO\n for (let index = 0; index < this.triggeredScrollElements.length; index++) {\n const scrollElement = this.triggeredScrollElements[index];\n const $scrollElementsToRemoveArr = Array.from($scrollElementsToRemove) as HTMLElement []\n if ($scrollElementsToRemoveArr.indexOf(scrollElement.$el) > -1) {\n this.IOTriggerInstance.unobserve(scrollElement.$el);\n this.triggeredScrollElements.splice(index, 1);\n }\n }\n\n for (let index = 0; index < this.RAFScrollElements.length; index++) {\n const scrollElement = this.RAFScrollElements[index];\n const $scrollElementsToRemoveArr = Array.from($scrollElementsToRemove) as HTMLElement []\n if ($scrollElementsToRemoveArr.indexOf(scrollElement.$el) > -1) {\n this.IORafInstance.unobserve(scrollElement.$el);\n this.RAFScrollElements.splice(index, 1);\n }\n }\n\n // 2. Remove from scrollElementsToUpdate[] and scrollElements[]\n $scrollElementsToRemove.forEach(($scrollElement) => {\n const targetScrollElementToUpdate =\n this.scrollElementsToUpdate.find(\n (scrollElement) => scrollElement.$el === $scrollElement\n );\n const targetScrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === $scrollElement\n );\n\n if (targetScrollElementToUpdate) {\n this._unsubscribeElementUpdate(targetScrollElementToUpdate);\n }\n if (targetScrollElement) {\n this.scrollElements = this.scrollElements.filter(\n (scrollElementItem) =>\n scrollElementItem.id != targetScrollElement.id\n );\n }\n });\n }\n\n /**\n * Add items to lists of scroll elements and compute all new values.\n *\n * @param {HTMLElement} $newContainer - HTMLElement that contains data-scroll elements to subscribe\n */\n addScrollElements($newContainer: HTMLElement) {\n // 3. Rebuild ScrollElements\n const $scrollElements = $newContainer.querySelectorAll('[data-scroll]');\n\n // 4. Get max scrollElement.id\n const ids: number[] = [];\n this.scrollElements.forEach((scrollElement) => {\n ids.push(scrollElement.id);\n });\n const maxID = Math.max(...ids);\n const fromIndex = maxID + 1;\n const $scrollElementsArr = Array.from($scrollElements) as HTMLElement[]\n this._subscribeScrollElements(\n $scrollElementsArr,\n fromIndex,\n true\n );\n }\n\n /**\n * Create a ScrollElement instance for each elements with\n * `data-scroll` attribute.\n *\n * @private\n *\n * @param {HTMLElement[]} $scrollElements - List of elements that need\n * to be regarded.\n */\n _subscribeScrollElements(\n $scrollElements: HTMLElement[],\n fromIndex = 0,\n toObserve = false\n ) {\n // For each scroll element create a ScrollElement instance\n for (let index = 0; index < $scrollElements.length; index++) {\n const $scrollElement = $scrollElements[index];\n const needRaf = this._checkRafNeeded($scrollElement);\n\n const scrollElementInstance = new ScrollElement({\n $el: $scrollElement,\n id: fromIndex + index,\n scrollOrientation: this.scrollOrientation,\n modularInstance: this.modularInstance,\n subscribeElementUpdateFn:\n this._subscribeElementUpdate.bind(this),\n unsubscribeElementUpdateFn:\n this._unsubscribeElementUpdate.bind(this),\n needRaf,\n });\n\n // Push to common array\n this.scrollElements.push(scrollElementInstance);\n\n // Push to specific array\n if (needRaf) {\n this.RAFScrollElements.push(scrollElementInstance);\n\n // Dynamic observe item\n if (toObserve) {\n this.IORafInstance.scrollElements.push(\n scrollElementInstance\n );\n this.IORafInstance.observe(scrollElementInstance.$el);\n }\n } else {\n this.triggeredScrollElements.push(scrollElementInstance);\n\n // Dynamic observe item\n if (toObserve) {\n this.IOTriggerInstance.scrollElements.push(\n scrollElementInstance\n );\n this.IOTriggerInstance.observe(scrollElementInstance.$el);\n }\n }\n }\n }\n\n /**\n * Clear all ScrollElement arrays.\n *\n * @private\n */\n _unsubscribeAllScrollElements() {\n this.scrollElements = [];\n this.RAFScrollElements = [];\n this.triggeredScrollElements = [];\n this.scrollElementsToUpdate = [];\n }\n\n /**\n * Subscribe ScrollElement instance that needs to be updated.\n *\n * @private\n *\n * @param {ScrollElement} scrollElement - ScrollElement instance inview\n * that needs to be updated.\n */\n _subscribeElementUpdate(scrollElement: ScrollElement) {\n this.scrollElementsToUpdate.push(scrollElement);\n }\n\n /**\n * Unscribe ScrollElement instance that doesn't need to be updated.\n *\n * @private\n *\n * @param {ScrollElement} scrollElement - The updated ScrollElement instance\n * out of view now.\n */\n _unsubscribeElementUpdate(scrollElement: ScrollElement) {\n this.scrollElementsToUpdate = this.scrollElementsToUpdate.filter(\n (scrollElementToUpdate) =>\n scrollElementToUpdate.id != scrollElement.id\n );\n }\n\n /**\n * Check if a DOM Element need a requestAnimationFrame to be used.\n *\n * @private\n *\n * @param {HTMLElement} $scrollElement - The element that needs to be checked.\n *\n * @returns {boolean}\n */\n _checkRafNeeded($scrollElement: HTMLElement) {\n let attributesThatNeedRaf = [...ATTRIBUTES_THAT_NEED_RAF];\n\n // Remove utils\n const removeAttribute = (attributeToRemove: string) => {\n attributesThatNeedRaf = attributesThatNeedRaf.filter(\n (attribute) => attribute != attributeToRemove\n );\n };\n\n // 1. Check scroll offset values\n if ($scrollElement.dataset.scrollOffset) {\n const value = $scrollElement.dataset.scrollOffset\n .split(',')\n .map((test) => test.replace('%', '').trim())\n .join(',');\n if (value != '0,0') {\n return true;\n } else {\n removeAttribute('scrollOffset');\n }\n } else {\n removeAttribute('scrollOffset');\n }\n\n // 2. Check scroll position values\n if ($scrollElement.dataset.scrollPosition) {\n const value = $scrollElement.dataset.scrollPosition.trim();\n if (value != 'top,bottom') {\n return true;\n } else {\n removeAttribute('scrollPosition');\n }\n } else {\n removeAttribute('scrollPosition');\n }\n\n // 3. Check scroll speed values\n if (\n $scrollElement.dataset.scrollSpeed &&\n !isNaN(parseFloat($scrollElement.dataset.scrollSpeed))\n ) {\n return true;\n } else {\n removeAttribute('scrollSpeed');\n }\n\n // 4. Check others attributes\n for (const attribute of attributesThatNeedRaf) {\n if (attribute in $scrollElement.dataset) {\n return true;\n }\n }\n\n return false;\n }\n}\n", "/**\n * Resize Observer\n *\n * The Resize Observer API provides a performant mechanism by which code can monitor an element for changes to its size,\n * with notifications being delivered to the observer each time the size changes.\n *\n * Features functions to:\n *\n * - Trigger the resize callback if the specified element's size change.\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/Resize_Observer_API}\n */\n\nimport { IROOptions } from '../types';\n\nexport default class RO {\n private $resizeElements: HTMLElement[];\n private isFirstObserve: boolean;\n private observer!: ResizeObserver;\n private resizeCallback: () => void;\n\n constructor({ resizeElements, resizeCallback = () => {} }: IROOptions) {\n // Parameters\n this.$resizeElements = resizeElements;\n this.resizeCallback = resizeCallback;\n\n // Flags\n this.isFirstObserve = true;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize Resize Observer.\n *\n * @private\n */\n private _init() {\n // Callback\n const onResize = (entries: ResizeObserverEntry[]) => {\n !this.isFirstObserve && this.resizeCallback?.();\n this.isFirstObserve = false;\n };\n\n // Instance\n this.observer = new ResizeObserver(onResize);\n\n // Observe each default elements\n for (const $resizeElement of this.$resizeElements) {\n this.observer.observe($resizeElement);\n }\n }\n\n /**\n * Lifecyle - Destroy Resize Observer.\n */\n public destroy() {\n this.observer.disconnect();\n }\n}\n", "//@ts-ignore\nimport Lenis from '@studio-freight/lenis';\nimport Core from './core/Core';\nimport RO from './core/RO';\nimport {\n ILenisOptions,\n ILenisScrollToOptions,\n ILenisScrollValues,\n ILocomotiveScrollOptions,\n IModular,\n lenisTargetScrollTo,\n} from './types';\n\n/**\n * @type {ILenisOptions}\n */\nconst defaultLenisOptions: ILenisOptions = {\n wrapper: window,\n content: document.documentElement,\n eventsTarget: window,\n lerp: 0.1,\n duration: 0.75,\n orientation: 'vertical',\n gestureOrientation: 'vertical',\n smoothWheel: true,\n smoothTouch: false,\n syncTouch: false,\n syncTouchLerp: 0.1,\n touchInertiaMultiplier: 35,\n wheelMultiplier: 1,\n touchMultiplier: 2,\n normalizeWheel: false,\n autoResize: true,\n easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)), // https://www.desmos.com/calculator/brs54l4xou\n};\n\n/**\n * Locomotive Scroll\n *\n * Detection of elements in viewport & smooth scrolling with parallax.\n *\n * Inspired by\n * {@link https://github.com/locomotivemtl/locomotive-scroll locomotive-scroll.js}\n * and built around\n * {@link https://github.com/studio-freight/lenis lenis.js}.\n */\n\nexport default class LocomotiveScroll {\n public rafPlaying: boolean;\n\n private lenisInstance: any;\n private coreInstance: any;\n\n private lenisOptions: ILenisOptions;\n private modularInstance?: IModular;\n private triggerRootMargin?: string;\n private rafRootMargin?: string;\n private rafInstance?: any;\n private autoResize?: boolean;\n private autoStart?: boolean;\n private ROInstance?: RO;\n private scrollCallback?(scrollValues: ILenisScrollValues): void;\n private initCustomTicker?: (render: () => void) => void;\n private destroyCustomTicker?: (render: () => void) => void;\n private _onRenderBind: () => void;\n private _onResizeBind: () => void;\n private _onScrollToBind: (event: MouseEvent) => void;\n\n constructor({\n lenisOptions = {},\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n autoResize = true,\n autoStart = true,\n scrollCallback = () => {},\n initCustomTicker,\n destroyCustomTicker,\n }: ILocomotiveScrollOptions = {}) {\n // Arguments\n this.lenisOptions = { ...defaultLenisOptions, ...lenisOptions };\n\n Object.assign(this, {\n lenisOptions,\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n autoResize,\n autoStart,\n scrollCallback,\n initCustomTicker,\n destroyCustomTicker,\n });\n\n // Binding\n this._onRenderBind = this._onRender.bind(this);\n this._onScrollToBind = this._onScrollTo.bind(this);\n this._onResizeBind = this._onResize.bind(this);\n\n // Data\n this.rafPlaying = false;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize instance.\n *\n * @private\n */\n private _init(): void {\n // Create Lenis instance\n this.lenisInstance = new Lenis({\n wrapper: this.lenisOptions.wrapper,\n content: this.lenisOptions.content,\n eventsTarget: this.lenisOptions.eventsTarget,\n lerp: this.lenisOptions.lerp,\n duration: this.lenisOptions.duration,\n orientation: this.lenisOptions.orientation,\n gestureOrientation: this.lenisOptions.gestureOrientation,\n smoothWheel: this.lenisOptions.smoothWheel,\n smoothTouch: this.lenisOptions.smoothTouch,\n syncTouch: this.lenisOptions.syncTouch,\n syncTouchLerp: this.lenisOptions.syncTouchLerp,\n touchInertiaMultiplier: this.lenisOptions.touchInertiaMultiplier,\n wheelMultiplier: this.lenisOptions.wheelMultiplier,\n touchMultiplier: this.lenisOptions.touchMultiplier,\n normalizeWheel: this.lenisOptions.normalizeWheel,\n easing: this.lenisOptions.easing,\n });\n this.lenisInstance?.on('scroll', this.scrollCallback);\n\n // Add scroll direction attribute on body\n document.documentElement.setAttribute(\n 'data-scroll-orientation',\n this.lenisInstance.options.orientation\n );\n\n requestAnimationFrame(() => {\n // Create Core Instance\n this.coreInstance = new Core({\n $el: this.lenisInstance.rootElement,\n modularInstance: this.modularInstance,\n triggerRootMargin: this.triggerRootMargin,\n rafRootMargin: this.rafRootMargin,\n scrollOrientation: this.lenisInstance.options.orientation,\n });\n\n // Bind Events\n this._bindEvents();\n\n // RAF warning\n if (this.initCustomTicker && !this.destroyCustomTicker) {\n console.warn(\n 'initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble.'\n );\n } else if (!this.initCustomTicker && this.destroyCustomTicker) {\n console.warn(\n 'destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble.'\n );\n }\n\n // Start RAF\n this.autoStart && this.start();\n });\n }\n\n /**\n * Lifecyle - Destroy instance.\n */\n public destroy(): void {\n // Stop raf\n this.stop();\n // Unbind Events\n this._unbindEvents();\n // Destroy Lenis\n this.lenisInstance.destroy();\n // Destroy Core\n this.coreInstance.destroy();\n }\n\n /**\n * Events - Subscribe events to listen.\n */\n private _bindEvents() {\n this._bindScrollToEvents();\n\n if (this.autoResize) {\n if ('ResizeObserver' in window) {\n this.ROInstance = new RO({\n resizeElements: [document.body],\n resizeCallback: this._onResizeBind,\n });\n } else {\n (window as any).addEventListener('resize', this._onResizeBind);\n }\n }\n }\n\n /**\n * Events - Unsubscribe listened events.\n */\n private _unbindEvents() {\n this._unbindScrollToEvents();\n\n if (this.autoResize) {\n if ('ResizeObserver' in window) {\n this.ROInstance && this.ROInstance.destroy();\n } else {\n (window as any).removeEventListener(\n 'resize',\n this._onResizeBind\n );\n }\n }\n }\n\n /**\n * Events - Subscribe scrollTo events to listen.\n */\n private _bindScrollToEvents($container?: HTMLElement) {\n const $rootContainer = $container\n ? $container\n : this.lenisInstance.rootElement;\n const $scrollToElements =\n $rootContainer?.querySelectorAll('[data-scroll-to]');\n\n $scrollToElements?.length &&\n $scrollToElements.forEach(($el: HTMLElement): void => {\n $el.addEventListener('click', this._onScrollToBind, false);\n });\n }\n\n /**\n * Events - Unsubscribe scrollTo listened events.\n */\n private _unbindScrollToEvents($container?: HTMLElement) {\n const $rootContainer = $container\n ? $container\n : this.lenisInstance.rootElement;\n const $scrollToElements =\n $rootContainer?.querySelectorAll('[data-scroll-to]');\n $scrollToElements?.length &&\n $scrollToElements.forEach(($el: HTMLElement) => {\n $el.removeEventListener('click', this._onScrollToBind, false);\n });\n }\n\n /**\n * Callback - Resize callback.\n */\n private _onResize() {\n // Waiting the next frame to get the new current scroll value return by Lenis\n requestAnimationFrame(() => {\n this.coreInstance?.onResize({\n currentScroll: this.lenisInstance.scroll,\n });\n });\n }\n\n /**\n * Callback - Render callback.\n */\n private _onRender() {\n this.lenisInstance?.raf(Date.now());\n\n this.coreInstance?.onRender({\n currentScroll: this.lenisInstance.scroll,\n smooth: this.lenisInstance.isSmooth,\n });\n }\n\n /**\n * Callback - Scroll To callback.\n */\n private _onScrollTo(event: MouseEvent) {\n event.preventDefault();\n const $target = (event.currentTarget as HTMLElement) ?? null;\n if (!$target) return;\n const target =\n $target.getAttribute('data-scroll-to-href') ||\n $target.getAttribute('href');\n const offset = $target.getAttribute('data-scroll-to-offset') || 0;\n const duration =\n $target.getAttribute('data-scroll-to-duration') ||\n this.lenisOptions.duration ||\n defaultLenisOptions.duration;\n\n target &&\n this.scrollTo(target, {\n offset: typeof offset === 'string' ? parseInt(offset) : offset,\n duration:\n typeof duration === 'string'\n ? parseInt(duration)\n : duration,\n });\n }\n\n /**\n * Start RequestAnimationFrame that active Lenis smooth and scroll progress.\n */\n public start(): void {\n if (this.rafPlaying) {\n return;\n }\n\n // Call lenis start method\n this.lenisInstance?.start();\n\n this.rafPlaying = true;\n this.initCustomTicker\n ? this.initCustomTicker(this._onRenderBind)\n : this._raf();\n }\n\n /**\n * Stop RequestAnimationFrame that active Lenis smooth and scroll progress.\n */\n public stop(): void {\n if (!this.rafPlaying) {\n return;\n }\n\n // Call lenis stop method\n this.lenisInstance?.stop();\n\n this.rafPlaying = false;\n this.destroyCustomTicker\n ? this.destroyCustomTicker(this._onRenderBind)\n : this.rafInstance && cancelAnimationFrame(this.rafInstance);\n }\n\n /**\n * Remove old scroll elements items and rebuild ScrollElements instances.\n */\n public removeScrollElements($oldContainer: HTMLElement): void {\n if (!$oldContainer) {\n console.error('Please provide a DOM Element as $oldContainer');\n return;\n }\n\n this._unbindScrollToEvents($oldContainer);\n this.coreInstance?.removeScrollElements($oldContainer);\n }\n\n /**\n * Add new scroll elements items and rebuild ScrollElements instances.\n */\n public addScrollElements($newContainer: HTMLElement): void {\n if (!$newContainer) {\n console.error('Please provide a DOM Element as $newContainer');\n return;\n }\n\n this.coreInstance?.addScrollElements($newContainer);\n requestAnimationFrame(() => {\n this._bindScrollToEvents($newContainer);\n });\n }\n\n /**\n * Trigger resize callback.\n */\n public resize(): void {\n this._onResizeBind();\n }\n\n /**\n * Trigger scroll to callback.\n */\n public scrollTo(\n target: lenisTargetScrollTo,\n options?: ILenisScrollToOptions\n ): void {\n this.lenisInstance?.scrollTo(target, {\n offset: options?.offset,\n lerp: options?.lerp,\n duration: options?.duration,\n immediate: options?.immediate,\n lock: options?.lock,\n force: options?.force,\n easing: options?.easing,\n onComplete: options?.onComplete,\n });\n }\n\n /**\n * RequestAnimationFrame that active Lenis smooth and scroll progress.\n *\n * @private\n *\n */\n private _raf() {\n this._onRenderBind();\n this.rafInstance = requestAnimationFrame(() => this._raf());\n }\n}\n", "import { module } from 'modujs'\nimport { lazyLoadImage } from '../utils/image'\nimport LocomotiveScroll from 'locomotive-scroll'\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n this.scroll = new LocomotiveScroll({\n modularInstance: this,\n })\n\n // // Force scroll to top\n // if (history.scrollRestoration) {\n // history.scrollRestoration = 'manual'\n // window.scrollTo(0, 0)\n // }\n }\n\n /**\n * Lazy load the related image.\n *\n * @see ../utils/image.js\n *\n * It is recommended to wrap your `` into an element with the\n * CSS class name `.c-lazy`. The CSS class name modifier `.-lazy-loaded`\n * will be applied on both the image and the parent wrapper.\n *\n * ```html\n *
\n * \"\"\n *
\n * ```\n *\n * @param {LocomotiveScroll} args - The Locomotive Scroll instance.\n */\n lazyLoad(args) {\n lazyLoadImage(args.target, null, () => {\n //callback\n })\n }\n\n scrollTo(params) {\n let { target, ...options } = params\n\n options = Object.assign({\n // Defaults\n duration: 1,\n }, options)\n\n this.scroll?.scrollTo(target, options)\n }\n\n destroy() {\n this.scroll.destroy();\n }\n}\n", "import svg4everybody from 'svg4everybody';\nimport { ENV } from './config';\n\n// Dynamic imports for development mode only\nlet gridHelper;\n(async () => {\n if (ENV.IS_DEV) {\n const gridHelperModule = await import('./utils/grid-helper');\n gridHelper = gridHelperModule?.gridHelper;\n }\n})();\n\nexport default function () {\n /**\n * Use external SVG spritemaps\n */\n svg4everybody();\n\n /**\n * Add grid helper\n */\n gridHelper?.();\n}\n", "/**\n * Creates a debounced function.\n *\n * A debounced function delays invoking `callback` until after\n * `delay` milliseconds have elapsed since the last time the\n * debounced function was invoked.\n *\n * Useful for behaviour that should only happen _before_ or\n * _after_ an event has stopped occurring.\n *\n * @template {function} T\n *\n * @param {T} callback - The function to debounce.\n * @param {number} delay - The number of milliseconds to wait.\n * @param {boolean} [immediate] -\n * If `true`, `callback` is invoked before `delay`.\n * If `false`, `callback` is invoked after `delay`.\n * @return {function} The new debounced function.\n */\n\nconst debounce = (callback, delay, immediate = false) => {\n let timeout = null\n\n return (...args) => {\n clearTimeout(timeout)\n\n const later = () => {\n timeout = null\n if (!immediate) {\n callback(...args)\n }\n }\n\n if (immediate && !timeout) {\n callback(...args)\n }\n\n timeout = setTimeout(later, delay)\n }\n}\n\n\n/**\n * Creates a throttled function.\n *\n * A throttled function invokes `callback` at most once per every\n * `delay` milliseconds.\n *\n * Useful for rate-limiting an event that occurs in quick succession.\n *\n * @template {function} T\n *\n * @param {T} callback - The function to throttle.\n * @param {number} delay - The number of milliseconds to wait.\n * @return {function} The new throttled function.\n */\n\nconst throttle = (callback, delay) => {\n let timeout = false\n\n return (...args) => {\n if (!timeout) {\n timeout = true\n\n callback(...args)\n\n setTimeout(() => {\n timeout = false\n }, delay)\n }\n }\n}\n\n\nexport {\n debounce,\n throttle\n}\n", "const $html = document.documentElement\nconst $body = document.body\n\nexport {\n $html,\n $body,\n}\n", "import modular from 'modujs';\nimport * as modules from './modules';\nimport globals from './globals';\nimport { debounce } from './utils/tickers'\nimport { $html } from './utils/dom';\nimport { ENV, FONT, CUSTOM_EVENT, CSS_CLASS } from './config'\nimport { isFontLoadingAPIAvailable, loadFonts } from './utils/fonts';\n\nconst app = new modular({\n modules: modules,\n});\n\nwindow.addEventListener('load', (event) => {\n const $style = document.getElementById('main-css');\n\n if ($style) {\n if ($style.isLoaded) {\n init();\n } else {\n $style.addEventListener('load', (event) => {\n init();\n });\n }\n } else {\n console.warn('The \"main-css\" stylesheet not found');\n }\n});\n\nfunction init() {\n globals();\n\n app.init(app);\n\n $html.classList.add(CSS_CLASS.LOADED);\n $html.classList.add(CSS_CLASS.READY);\n $html.classList.remove(CSS_CLASS.LOADING);\n\n // Bind window resize event with default vars\n const resizeEndEvent = new CustomEvent(CUSTOM_EVENT.RESIZE_END)\n window.addEventListener('resize', () => {\n $html.style.setProperty('--vw', `${document.documentElement.clientWidth * 0.01}px`)\n debounce(() => {\n window.dispatchEvent(resizeEndEvent)\n }, 200, false)\n })\n\n /**\n * Eagerly load the following fonts.\n */\n if (isFontLoadingAPIAvailable) {\n loadFonts(FONT.EAGER, ENV.IS_DEV).then((eagerFonts) => {\n $html.classList.add(CSS_CLASS.FONTS_LOADED);\n\n if (ENV.IS_DEV) {\n console.group('Eager fonts loaded!', eagerFonts.length, '/', document.fonts.size);\n console.group('State of eager fonts:')\n eagerFonts.forEach((font) => console.log(font.family, font.style, font.weight, font.status/*, font*/))\n console.groupEnd()\n console.group('State of all fonts:')\n document.fonts.forEach((font) => console.log(font.family, font.style, font.weight, font.status/*, font*/))\n console.groupEnd()\n }\n });\n }\n}\n"], - "mappings": "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", - "names": ["require_svg4everybody", "__commonJSMin", "exports", "module", "root", "factory", "embed", "parent", "svg", "target", "fragment", "viewBox", "clone", "loadreadystatechange", "xhr", "cachedDocument", "item", "svg4everybody", "rawopts", "oninterval", "index", "uses", "use", "getSVGAncestor", "src", "opts", "polyfill", "srcSplit", "url", "id", "requests", "numberOfSvgUseElementsToBypass", "requestAnimationFrame", "newerIEUA", "webkitUA", "olderEdgeUA", "edgeUA", "inIframe", "node", "grid_helper_exports", "__export", "gridHelper", "gutterCssVar", "GRID_HELPER_GUTTER_CSS_VAR", "marginCssVar", "GRID_HELPER_MARGIN_CSS_VAR", "rgbaColor", "GRID_HELPER_RGBA_COLOR", "$gridContainer", "setGridHelperColumns", "setGridHelperStyles", "setGridEvents", "$container", "elStyles", "columns", "$col", "i", "ctrlDown", "isActive", "e", "init_grid_helper", "__esmMin", "_typeof", "obj", "_classCallCheck", "instance", "Constructor", "_defineProperties", "target", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_defineProperty", "key", "value", "_slicedToArray", "arr", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "_toConsumableArray", "_arrayWithoutHoles", "_iterableToArray", "_nonIterableSpread", "_arrayLikeToArray", "iter", "_arr", "_n", "_d", "_e", "_i", "_s", "err", "o", "minLen", "n", "len", "arr2", "_default", "options", "modules", "_this", "event", "_this2", "capture", "e", "data", "name", "method", "query", "context", "classIndex", "idIndex", "attrIndex", "indexes", "index", "more", "parent", "func", "args", "mod", "id", "_this3", "_this4", "_default$1", "app", "scope", "container", "elements", "el", "moduleExists", "dataName", "moduleName", "module", "moduleId", "_ref", "_ref2", "split", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_this5", "a", "b", "str", "main_esm_default", "modules_exports", "__export", "Example_default", "Load_default", "Scroll_default", "NODE_ENV", "IS_MOBILE", "ENV", "CSS_CLASS", "CUSTOM_EVENT", "FONT", "isFontLoadingAPIAvailable", "conformsToReference", "font", "criterion", "key", "value", "trim", "conformsToShorthand", "family", "findManyByReference", "search", "found", "font", "conformsToReference", "findManyByShorthand", "conformsToShorthand", "getMany", "queries", "found", "search", "findManyByShorthand", "findManyByReference", "loadFonts", "fontsToLoad", "debug", "__async", "_a", "loadFontsWithAPI", "loadFontFaceWithAPI", "font", "err", "fontsToBeLoaded", "fontToLoad", "getMany", "trim", "value", "whenReady", "queries", "fonts", "Example_default", "_default", "m", "whenReady", "FONT", "fonts", "_classCallCheck", "instance", "Constructor", "_defineProperties", "target", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_slicedToArray", "arr", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "_i", "_arr", "_n", "_d", "_s", "_e", "err", "o", "minLen", "_arrayLikeToArray", "n", "len", "arr2", "_default", "options", "_this", "e", "href", "link", "transition", "isUrl", "push", "container", "oldContainer", "loadingEvent", "_this2", "_this3", "signal", "response", "data", "parser", "_this4", "svgs", "svg", "xhref", "_this5", "title", "newDesc", "oldDesc", "newContainer", "datas", "_ref", "_ref2", "key", "val", "str", "_this6", "promises", "attr", "els", "el", "elData", "promise", "resolve", "imagesEvent", "_this7", "loadedEvent", "readyEvent", "event", "func", "_this8", "main_esm_default", "Load_default", "_default", "m", "main_esm_default", "transition", "oldContainer", "newContainer", "getImageMetadata", "$img", "loadImage", "url", "options", "resolve", "reject", "loadCallback", "__spreadValues", "e", "LAZY_LOADED_IMAGES", "lazyLoadImage", "$el", "callback", "__async", "src", "loadedImage", "image", "lazyParent", "CSS_CLASS", "clamp", "min", "input", "max", "Math", "Animate", "advance", "deltaTime", "_this$onUpdate", "this", "isRunning", "completed", "lerp", "value", "x", "y", "to", "t", "exp", "round", "currentTime", "linearProgress", "duration", "easedProgress", "easing", "from", "onUpdate", "call", "stop", "fromTo", "onStart", "Dimensions", "constructor", "wrapper", "content", "autoResize", "resize", "onWrapperResize", "onContentResize", "window", "width", "innerWidth", "height", "innerHeight", "clientWidth", "clientHeight", "scrollHeight", "scrollWidth", "callback", "delay", "timer", "args", "arguments", "context", "clearTimeout", "setTimeout", "apply", "wrapperResizeObserver", "ResizeObserver", "observe", "contentResizeObserver", "destroy", "_this$wrapperResizeOb", "_this$contentResizeOb", "disconnect", "limit", "Emitter", "events", "emit", "event", "callbacks", "i", "length", "on", "cb", "_this$events$event", "push", "_this$events$event2", "filter", "off", "_this$events$event3", "VirtualScroll", "element", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "onTouchStart", "clientX", "clientY", "targetTouches", "touchStart", "lastDelta", "onTouchMove", "deltaX", "deltaY", "emitter", "onTouchEnd", "onWheel", "addEventListener", "passive", "removeEventListener", "Lenis", "document", "documentElement", "wheelEventsTarget", "eventsTarget", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "__iosNoInertiaSyncTouchLerp", "touchInertiaMultiplier", "pow", "infinite", "orientation", "gestureOrientation", "onVirtualScroll", "ctrlKey", "isTouch", "type", "includes", "isWheel", "options", "scroll", "composedPath", "slice", "indexOf", "rootElement", "find", "node", "_node$classList", "hasAttribute", "classList", "contains", "isStopped", "isLocked", "preventDefault", "isSmooth", "isScrolling", "animate", "delta", "abs", "hasTouchInertia", "velocity", "scrollTo", "targetScroll", "_extends", "programmatic", "onScroll", "lastScroll", "animatedScroll", "actualScroll", "direction", "sign", "lenisVersion", "body", "dimensions", "toggleClass", "virtualScroll", "setScroll", "isHorizontal", "scrollLeft", "scrollTop", "reset", "start", "raf", "time", "target", "offset", "immediate", "lock", "onComplete", "force", "_target", "querySelector", "nodeType", "wrapperRect", "getBoundingClientRect", "left", "top", "rect", "requestAnimationFrame", "d", "progress", "__isSmooth", "__isScrolling", "__isStopped", "__isLocked", "className", "name", "toggle", "IO", "constructor", "scrollElements", "rootMargin", "IORaf", "this", "observer", "_init", "IntersectionObserver", "entries", "forEach", "entry", "$targetItem", "find", "item", "$el", "target", "isIntersecting", "isAlreadyIntersected", "_setInview", "_setOutOfView", "scrollElement", "observe", "destroy", "disconnect", "$scrollElement", "unobserve", "setInteractivityOn", "setInview", "setInteractivityOff", "setOutOfView", "attributes", "scrollRepeat", "mapRange", "inMin", "inMax", "outMin", "outMax", "value", "closestNumber", "array", "reduce", "prev", "curr", "Math", "abs", "ScrollElement", "id", "modularInstance", "subscribeElementUpdateFn", "unsubscribeElementUpdateFn", "needRaf", "scrollOrientation", "_this$$el$dataset$scr", "_this$$el$dataset$scr2", "_this$$el$dataset$scr3", "_this$$el$dataset$scr4", "_this$$el$dataset$scr5", "intersection", "metrics", "currentScroll", "translateValue", "progress", "lastProgress", "progressModularModules", "isInview", "isInteractive", "isInFold", "isFirstResize", "scrollClass", "dataset", "scrollOffset", "scrollPosition", "scrollModuleProgress", "scrollCssProgress", "scrollEventProgress", "scrollSpeed", "parseFloat", "scrollCall", "scrollCallSelf", "scrollIgnoreFold", "scrollEnableTouchSpeed", "start", "end", "offsetStart", "offsetEnd", "bcr", "window", "scrollY", "scrollX", "_getProgressModularModules", "_resize", "onResize", "onRender", "smooth", "wSize", "innerHeight", "innerWidth", "_computeProgress", "isNaN", "max", "style", "transform", "classList", "add", "from", "_getScrollCallFrom", "_dispatchCall", "remove", "getBoundingClientRect", "_computeMetrics", "_computeIntersection", "top", "left", "height", "width", "metricsSize", "offset", "split", "undefined", "trim", "scrollPositionStart", "scrollPositionEnd", "viewportStart", "includes", "parseInt", "replace", "viewportEnd", "forcedProgress", "_setCssProgress", "_setCustomEventProgress", "modularModules", "call", "moduleName", "moduleId", "currentProgress", "setProperty", "toString", "customEventName", "customEvent", "CustomEvent", "detail", "dispatchEvent", "modulesIdNames", "Object", "keys", "filter", "key", "modules", "length", "modulesIdName", "module", "moduleObj", "push", "closestIntersectionValue", "way", "_this$attributes$scro", "_this$attributes", "callParameters", "callSelf", "_targetModuleId", "func", "targetModuleId", "ATTRIBUTES_THAT_NEED_RAF", "Core", "triggerRootMargin", "rafRootMargin", "$scrollContainer", "triggeredScrollElements", "RAFScrollElements", "scrollElementsToUpdate", "IOTriggerInstance", "IORafInstance", "console", "error", "$scrollElements", "querySelectorAll", "$scrollElementsArr", "Array", "_subscribeScrollElements", "_unsubscribeAllScrollElements", "removeScrollElements", "$oldContainer", "$scrollElementsToRemove", "index", "indexOf", "splice", "targetScrollElementToUpdate", "targetScrollElement", "_unsubscribeElementUpdate", "scrollElementItem", "addScrollElements", "$newContainer", "ids", "fromIndex", "toObserve", "_checkRafNeeded", "scrollElementInstance", "_subscribeElementUpdate", "bind", "scrollElementToUpdate", "attributesThatNeedRaf", "removeAttribute", "attributeToRemove", "attribute", "map", "test", "join", "RO", "resizeElements", "resizeCallback", "$resizeElements", "isFirstObserve", "ResizeObserver", "_this$resizeCallback", "$resizeElement", "defaultLenisOptions", "wrapper", "content", "document", "documentElement", "eventsTarget", "lerp", "duration", "orientation", "gestureOrientation", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "touchInertiaMultiplier", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "autoResize", "easing", "t", "min", "pow", "LocomotiveScroll", "lenisOptions", "autoStart", "scrollCallback", "initCustomTicker", "destroyCustomTicker", "rafPlaying", "lenisInstance", "coreInstance", "rafInstance", "ROInstance", "_onRenderBind", "_onResizeBind", "_onScrollToBind", "_extends", "assign", "_onRender", "_onScrollTo", "_onResize", "_this$lenisInstance", "Lenis", "on", "setAttribute", "options", "requestAnimationFrame", "rootElement", "_bindEvents", "warn", "stop", "_unbindEvents", "_bindScrollToEvents", "body", "addEventListener", "_unbindScrollToEvents", "removeEventListener", "$container", "$rootContainer", "$scrollToElements", "_this$coreInstance", "scroll", "_this$lenisInstance2", "_this$coreInstance2", "raf", "Date", "now", "isSmooth", "event", "_event$currentTarget", "preventDefault", "$target", "currentTarget", "getAttribute", "scrollTo", "_this$lenisInstance3", "_raf", "_this$lenisInstance4", "cancelAnimationFrame", "_this$coreInstance3", "_this$coreInstance4", "resize", "_this$lenisInstance5", "immediate", "lock", "force", "onComplete", "Scroll_default", "_default", "m", "h", "args", "lazyLoadImage", "params", "_b", "_a", "target", "options", "__objRest", "import_svg4everybody", "gridHelper", "__async", "ENV", "gridHelperModule", "globals_default", "svg4everybody", "debounce", "callback", "delay", "immediate", "timeout", "args", "later", "$html", "$body", "app", "main_esm_default", "modules_exports", "event", "$style", "init", "globals_default", "$html", "CSS_CLASS", "resizeEndEvent", "CUSTOM_EVENT", "debounce", "isFontLoadingAPIAvailable", "loadFonts", "FONT", "ENV", "eagerFonts", "font"] + "mappings": "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", + "names": ["svg4everybody", "requestAnimationFrame", "i", "e", "obj", "i", "o", "n", "_default", "e", "index", "parent", "id", "init", "app", "a", "criterion", "font", "_classCallCheck", "_defineProperties", "i", "_createClass", "_slicedToArray", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "o", "_arrayLikeToArray", "n", "_default", "init", "e", "main_esm_default", "main_esm_default", "e", "clamp", "min", "input", "max", "Math", "Animate", "advance", "deltaTime", "_this$onUpdate", "this", "isRunning", "completed", "lerp", "value", "x", "y", "to", "t", "exp", "round", "currentTime", "linearProgress", "duration", "easedProgress", "easing", "from", "onUpdate", "call", "stop", "fromTo", "onStart", "Dimensions", "constructor", "wrapper", "content", "autoResize", "resize", "onWrapperResize", "onContentResize", "window", "width", "innerWidth", "height", "innerHeight", "clientWidth", "clientHeight", "scrollHeight", "scrollWidth", "callback", "delay", "timer", "args", "arguments", "context", "clearTimeout", "setTimeout", "apply", "wrapperResizeObserver", "ResizeObserver", "observe", "contentResizeObserver", "destroy", "_this$wrapperResizeOb", "_this$contentResizeOb", "disconnect", "limit", "Emitter", "events", "emit", "event", "callbacks", "i", "length", "on", "cb", "_this$events$event", "push", "_this$events$event2", "filter", "off", "_this$events$event3", "VirtualScroll", "element", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "onTouchStart", "clientX", "clientY", "targetTouches", "touchStart", "lastDelta", "onTouchMove", "deltaX", "deltaY", "emitter", "onTouchEnd", "onWheel", "addEventListener", "passive", "removeEventListener", "Lenis", "document", "documentElement", "wheelEventsTarget", "eventsTarget", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "__iosNoInertiaSyncTouchLerp", "touchInertiaMultiplier", "pow", "infinite", "orientation", "gestureOrientation", "onVirtualScroll", "ctrlKey", "isTouch", "type", "includes", "isWheel", "options", "scroll", "composedPath", "slice", "indexOf", "rootElement", "find", "node", "_node$classList", "hasAttribute", "classList", "contains", "isStopped", "isLocked", "preventDefault", "isSmooth", "isScrolling", "animate", "delta", "abs", "hasTouchInertia", "velocity", "scrollTo", "targetScroll", "_extends", "programmatic", "onScroll", "lastScroll", "animatedScroll", "actualScroll", "direction", "sign", "lenisVersion", "body", "dimensions", "toggleClass", "virtualScroll", "setScroll", "isHorizontal", "scrollLeft", "scrollTop", "reset", "start", "raf", "time", "target", "offset", "immediate", "lock", "onComplete", "force", "_target", "querySelector", "nodeType", "wrapperRect", "getBoundingClientRect", "left", "top", "rect", "requestAnimationFrame", "d", "progress", "__isSmooth", "__isScrolling", "__isStopped", "__isLocked", "className", "name", "toggle", "IO", "constructor", "scrollElements", "rootMargin", "IORaf", "this", "observer", "_init", "IntersectionObserver", "entries", "forEach", "entry", "$targetItem", "find", "item", "$el", "target", "isIntersecting", "isAlreadyIntersected", "_setInview", "_setOutOfView", "scrollElement", "observe", "destroy", "disconnect", "$scrollElement", "unobserve", "setInteractivityOn", "setInview", "setInteractivityOff", "setOutOfView", "attributes", "scrollRepeat", "mapRange", "inMin", "inMax", "outMin", "outMax", "value", "closestNumber", "array", "reduce", "prev", "curr", "Math", "abs", "ScrollElement", "id", "modularInstance", "subscribeElementUpdateFn", "unsubscribeElementUpdateFn", "needRaf", "scrollOrientation", "_this$$el$dataset$scr", "_this$$el$dataset$scr2", "_this$$el$dataset$scr3", "_this$$el$dataset$scr4", "_this$$el$dataset$scr5", "intersection", "metrics", "currentScroll", "translateValue", "progress", "lastProgress", "progressModularModules", "isInview", "isInteractive", "isInFold", "isFirstResize", "scrollClass", "dataset", "scrollOffset", "scrollPosition", "scrollModuleProgress", "scrollCssProgress", "scrollEventProgress", "scrollSpeed", "parseFloat", "scrollCall", "scrollCallSelf", "scrollIgnoreFold", "scrollEnableTouchSpeed", "start", "end", "offsetStart", "offsetEnd", "bcr", "window", "scrollY", "scrollX", "_getProgressModularModules", "_resize", "onResize", "onRender", "smooth", "wSize", "innerHeight", "innerWidth", "_computeProgress", "isNaN", "max", "style", "transform", "classList", "add", "from", "_getScrollCallFrom", "_dispatchCall", "remove", "getBoundingClientRect", "_computeMetrics", "_computeIntersection", "top", "left", "height", "width", "metricsSize", "offset", "split", "undefined", "trim", "scrollPositionStart", "scrollPositionEnd", "viewportStart", "includes", "parseInt", "replace", "viewportEnd", "forcedProgress", "_setCssProgress", "_setCustomEventProgress", "modularModules", "call", "moduleName", "moduleId", "currentProgress", "setProperty", "toString", "customEventName", "customEvent", "CustomEvent", "detail", "dispatchEvent", "modulesIdNames", "Object", "keys", "filter", "key", "modules", "length", "modulesIdName", "module", "moduleObj", "push", "closestIntersectionValue", "way", "_this$attributes$scro", "_this$attributes", "callParameters", "callSelf", "_targetModuleId", "func", "targetModuleId", "ATTRIBUTES_THAT_NEED_RAF", "Core", "triggerRootMargin", "rafRootMargin", "$scrollContainer", "triggeredScrollElements", "RAFScrollElements", "scrollElementsToUpdate", "IOTriggerInstance", "IORafInstance", "console", "error", "$scrollElements", "querySelectorAll", "$scrollElementsArr", "Array", "_subscribeScrollElements", "_unsubscribeAllScrollElements", "removeScrollElements", "$oldContainer", "$scrollElementsToRemove", "index", "indexOf", "splice", "targetScrollElementToUpdate", "targetScrollElement", "_unsubscribeElementUpdate", "scrollElementItem", "addScrollElements", "$newContainer", "ids", "fromIndex", "toObserve", "_checkRafNeeded", "scrollElementInstance", "_subscribeElementUpdate", "bind", "scrollElementToUpdate", "attributesThatNeedRaf", "removeAttribute", "attributeToRemove", "attribute", "map", "test", "join", "RO", "resizeElements", "resizeCallback", "$resizeElements", "isFirstObserve", "ResizeObserver", "_this$resizeCallback", "$resizeElement", "defaultLenisOptions", "wrapper", "content", "document", "documentElement", "eventsTarget", "lerp", "duration", "orientation", "gestureOrientation", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "touchInertiaMultiplier", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "autoResize", "easing", "t", "min", "pow", "LocomotiveScroll", "lenisOptions", "autoStart", "scrollCallback", "initCustomTicker", "destroyCustomTicker", "rafPlaying", "lenisInstance", "coreInstance", "rafInstance", "ROInstance", "_onRenderBind", "_onResizeBind", "_onScrollToBind", "_extends", "assign", "_onRender", "_onScrollTo", "_onResize", "_this$lenisInstance", "Lenis", "on", "setAttribute", "options", "requestAnimationFrame", "rootElement", "_bindEvents", "warn", "stop", "_unbindEvents", "_bindScrollToEvents", "body", "addEventListener", "_unbindScrollToEvents", "removeEventListener", "$container", "$rootContainer", "$scrollToElements", "_this$coreInstance", "scroll", "_this$lenisInstance2", "_this$coreInstance2", "raf", "Date", "now", "isSmooth", "event", "_event$currentTarget", "preventDefault", "$target", "currentTarget", "getAttribute", "scrollTo", "_this$lenisInstance3", "_raf", "_this$lenisInstance4", "cancelAnimationFrame", "_this$coreInstance3", "_this$coreInstance4", "resize", "_this$lenisInstance5", "immediate", "lock", "force", "onComplete", "gridHelper", "svg4everybody", "event"] } diff --git a/www/assets/styles/main.css b/www/assets/styles/main.css index 0de9e6a..b88b7bf 100644 --- a/www/assets/styles/main.css +++ b/www/assets/styles/main.css @@ -1 +1,1507 @@ -:root{--grid-columns: 4;--grid-gutter: 0.625rem;--grid-margin: 0.625rem;--font-size-h1: clamp(36px, 0.0514285714 * calc(100 * var(--vw, 1vw)), 72px);--font-size-h2: 1.75rem;--font-size-h3: 1.5rem;--font-size-h4: 1.25rem;--font-size-h5: 1.125rem;--font-size-h6: 1rem}@media(min-width: 700px){:root{--grid-columns: 12;--grid-gutter: 1rem;--grid-margin: 1.25rem}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}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:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}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}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{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-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{box-sizing:border-box}template,[hidden]{display:none}*,:before,:after{box-sizing:inherit}address{font-style:inherit}dfn,cite,em,i{font-style:italic}b,strong{font-weight:700}a{text-decoration:none}a svg{pointer-events:none}ul,ol{margin:0;padding:0;list-style:none}p,figure{margin:0;padding:0}h1,h2,h3,h4,h5,h6{margin:0}a,area,button,input,label,select,textarea,[tabindex]{touch-action:manipulation}[hreflang]>abbr[title]{text-decoration:none}table{border-spacing:0;border-collapse:collapse}hr{display:block;margin:1em 0;padding:0;height:1px;border:0;border-top:1px solid #ccc}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio:not([controls]){display:none;height:0}img,svg{max-width:100%;height:auto}img[width],img[height],svg[width],svg[height]{max-width:none}img{font-style:italic}svg{fill:currentColor}input,select,textarea{display:block;margin:0;padding:0;width:100%;outline:0;border:0;border-radius:0;background:none rgba(0,0,0,0);color:inherit;font:inherit;line-height:normal;-webkit-appearance:none;-moz-appearance:none;appearance:none}select{text-transform:none}select::-ms-expand{display:none}select::-ms-value{background:none;color:inherit}textarea{overflow:auto;resize:vertical}button,.c-button{display:inline-block;overflow:visible;margin:0;padding:0;outline:0;border:0;background:none rgba(0,0,0,0);color:inherit;vertical-align:middle;text-align:center;text-decoration:none;text-transform:none;font:inherit;line-height:normal;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}button:focus,button:hover,.c-button:focus,.c-button:hover{text-decoration:none}html.lenis{height:auto}.lenis.lenis-smooth{scroll-behavior:auto}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-scrolling iframe{pointer-events:none}@font-face{font-display:swap;font-family:"Source Sans";src:url("../fonts/SourceSans3-Bold.woff2") format("woff2"),url("../fonts/SourceSans3-Bold.woff") format("woff");font-weight:700;font-style:normal}@font-face{font-display:swap;font-family:"Source Sans";src:url("../fonts/SourceSans3-BoldIt.woff2") format("woff2"),url("../fonts/SourceSans3-BoldIt.woff") format("woff");font-weight:700;font-style:italic}@font-face{font-display:swap;font-family:"Source Sans";src:url("../fonts/SourceSans3-Regular.woff2") format("woff2"),url("../fonts/SourceSans3-Regular.woff") format("woff");font-weight:400;font-style:normal}@font-face{font-display:swap;font-family:"Source Sans";src:url("../fonts/SourceSans3-RegularIt.woff2") format("woff2"),url("../fonts/SourceSans3-RegularIt.woff") format("woff");font-weight:400;font-style:italic}html{min-height:100%;line-height:1.5;font-family:"Source Sans",-apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,helvetica,Cantarell,Ubuntu,roboto,noto,arial,sans-serif;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(max-width: 699px){html{font-size:14px}}@media(min-width: 700px)and (max-width: 999px){html{font-size:14px}}@media(min-width: 1000px)and (max-width: 1199px){html{font-size:15px}}@media(min-width: 1200px)and (max-width: 1599px){html{font-size:16px}}@media(min-width: 1600px)and (max-width: 1999px){html{font-size:17px}}@media(min-width: 2000px)and (max-width: 2399px){html{font-size:18px}}@media(min-width: 2400px){html{font-size:20px}}html.is-loading{cursor:wait}::-moz-selection{background-color:#fff;color:#000;text-shadow:none}::selection{background-color:#fff;color:#000;text-shadow:none}a{color:#3297fd}a:focus,a:hover{color:#027dfa}.o-container{margin-right:auto;margin-left:auto;padding-left:var(--grid-margin);padding-right:var(--grid-margin)}.o-ratio{position:relative;display:block;overflow:hidden}.o-ratio:before{display:block;padding-bottom:100%;width:100%;content:""}.o-ratio_content,.o-ratio>img,.o-ratio>iframe,.o-ratio>embed,.o-ratio>object{position:absolute;top:0;bottom:0;left:0;width:100%}.o-icon{display:inline-block;vertical-align:middle}.o-icon svg{--icon-height: calc(var(--icon-width) * math.div(1, (var(--icon-ratio))));display:block;width:var(--icon-width);height:var(--icon-height);fill:currentColor}.o-grid{display:grid;width:100%}.o-grid:is(ul,ol){margin:0;padding:0;list-style:none}.o-grid.-cols{grid-template-columns:repeat(var(--grid-columns), 1fr)}.o-grid.-col-12{grid-template-columns:repeat(12, 1fr)}.o-grid.-col-4{grid-template-columns:repeat(4, 1fr)}@media(min-width: 1000px){.o-grid.-col-12\@from-medium{grid-template-columns:repeat(12, 1fr)}}.o-grid.-gutters{gap:var(--grid-gutter);-moz-column-gap:var(--grid-gutter);column-gap:var(--grid-gutter)}.o-grid.-full-height{height:100%}.o-grid.-top-items{align-items:start}.o-grid.-right-items{justify-items:end}.o-grid.-bottom-items{align-items:end}.o-grid.-left-items{justify-items:start}.o-grid.-center-items{align-items:center;justify-items:center}.o-grid.-center-items-x{justify-items:center}.o-grid.-center-items-y{align-items:center}.o-grid.-stretch-items{align-items:stretch;justify-items:stretch}.o-grid.-top-cells{align-content:start}.o-grid.-right-cells{justify-content:end}.o-grid.-bottom-cells{align-content:end}.o-grid.-left-cells{justify-content:start}.o-grid.-center-cells{align-content:center;justify-content:center}.o-grid.-center-cells-x{justify-content:center}.o-grid.-center-cells-y{align-content:center}.o-grid.-stretch-cells{align-content:stretch;justify-content:stretch}.o-grid.-space-around-cells{align-content:space-around;justify-content:space-around}.o-grid.-space-around-cells-x{justify-content:space-around}.o-grid.-space-around-cells-y{align-content:space-around}.o-grid.-space-between-cells{justify-content:space-between;align-content:space-between}.o-grid.-space-between-cells-x{justify-content:space-between}.o-grid.-space-between-cells-y{align-content:space-between}.o-grid.-space-evenly-cells{justify-content:space-evenly;align-content:space-evenly}.o-grid.-space-evenly-cells-x{justify-content:space-evenly}.o-grid.-space-evenly-cells-y{align-content:space-evenly}.o-grid_item{grid-column-start:var(--gc-start, 1);grid-column-end:var(--gc-end, -1)}.o-grid_item.-align-end{align-self:end}.c-heading{margin-bottom:1.875rem}.c-heading.-h1{font-size:var(--font-size-h1)}.c-heading.-h2{font-size:var(--font-size-h2)}.c-heading.-h3{font-size:var(--font-size-h3)}.c-heading.-h4{font-size:var(--font-size-h4)}.c-heading.-h5{font-size:var(--font-size-h5)}.c-heading.-h6{font-size:var(--font-size-h6)}.c-button{padding:.9375rem 1.25rem;background-color:#d3d3d3}.c-button:focus,.c-button:hover{background-color:#a9a9a9}.c-form_item{position:relative;margin-bottom:1.875rem}.c-form_label,.c-form_checkboxLabel,.c-form_radioLabel{display:block;margin-bottom:.625rem}.c-form_input,.c-form_textarea,.c-form_select_input{padding:.625rem;border:1px solid #d3d3d3;background-color:#fff}.c-form_input:hover,.c-form_textarea:hover,.c-form_select_input:hover{border-color:#a9a9a9}.c-form_input:focus,.c-form_textarea:focus,.c-form_select_input:focus{border-color:dimgray}.c-form_input::-moz-placeholder, .c-form_textarea::-moz-placeholder, .c-form_select_input::-moz-placeholder{color:gray}.c-form_input::placeholder,.c-form_textarea::placeholder,.c-form_select_input::placeholder{color:gray}.c-form_checkboxLabel,.c-form_radioLabel{position:relative;display:inline-block;margin-right:.625rem;margin-bottom:0;padding-left:1.75rem;cursor:pointer}.c-form_checkboxLabel::before,.c-form_radioLabel::before,.c-form_checkboxLabel::after,.c-form_radioLabel::after{position:absolute;top:50%;left:0;display:inline-block;margin-top:-0.5625rem;padding:0;width:1.125rem;height:1.125rem;content:""}.c-form_checkboxLabel::before,.c-form_radioLabel::before{background-color:#fff;border:1px solid #d3d3d3}.c-form_checkboxLabel::after,.c-form_radioLabel::after{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E");background-position:center;background-size:.75rem;background-repeat:no-repeat;opacity:0}.c-form_checkboxLabel:hover::before,.c-form_radioLabel:hover::before{border-color:#a9a9a9}.c-form_checkbox:focus+.c-form_checkboxLabel::before,.c-form_radio:focus+.c-form_checkboxLabel::before,.c-form_checkbox:focus+.c-form_radioLabel::before,.c-form_radio:focus+.c-form_radioLabel::before{border-color:dimgray}.c-form_checkbox:checked+.c-form_checkboxLabel::after,.c-form_radio:checked+.c-form_checkboxLabel::after,.c-form_checkbox:checked+.c-form_radioLabel::after,.c-form_radio:checked+.c-form_radioLabel::after{opacity:1}.c-form_checkbox,.c-form_radio{position:absolute;width:0;opacity:0}.c-form_radioLabel::before,.c-form_radioLabel::after{border-radius:50%}.c-form_radioLabel::after{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E");background-size:.375rem}.c-form_select{position:relative;cursor:pointer}.c-form_select::after{position:absolute;top:0;right:0;bottom:0;z-index:2;width:2.5rem;background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E");background-position:center;background-size:.5rem;background-repeat:no-repeat;content:"";pointer-events:none}.c-form_select_input{position:relative;z-index:1;padding-right:2.5rem;cursor:pointer}.c-form_textarea{min-height:12.5rem}.u-2\:1::before{padding-bottom:50%}.u-4\:3::before{padding-bottom:75%}.u-16\:9::before{padding-bottom:56.25%}.u-gc-1\/3{--gc-start: 1;--gc-end: 3}@media(min-width: 1000px){.u-gc-1\/5\@from-medium{--gc-start: 1;--gc-end: 5}}@media(min-width: 1000px){.u-gc-1\/8\@from-medium{--gc-start: 1;--gc-end: 8}}@media(min-width: 1000px){.u-gc-5\/9\@from-medium{--gc-start: 5;--gc-end: 9}}@media(min-width: 1000px){.u-gc-5\/13\@from-medium{--gc-start: 5;--gc-end: 13}}@media(min-width: 1000px){.u-gc-9\/13\@from-medium{--gc-start: 9;--gc-end: 13}} \ No newline at end of file +/* +! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com +*//* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; /* 1 */ + border-width: 0; /* 2 */ + border-style: solid; /* 2 */ + border-color: #e5e7eb; /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +7. Disable tap highlights on iOS +*/ + +html, +:host { + line-height: 1.5; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + -moz-tab-size: 4; /* 3 */ + -o-tab-size: 4; + tab-size: 4; /* 3 */ + font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ + font-feature-settings: normal; /* 5 */ + font-variation-settings: normal; /* 6 */ + -webkit-tap-highlight-color: transparent; /* 7 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; /* 1 */ + line-height: inherit; /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font-family by default. +2. Use the user's configured `mono` font-feature-settings by default. +3. Use the user's configured `mono` font-variation-settings by default. +4. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ + font-feature-settings: normal; /* 2 */ + font-variation-settings: normal; /* 3 */ + font-size: 1em; /* 4 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-feature-settings: inherit; /* 1 */ + font-variation-settings: inherit; /* 1 */ + font-size: 100%; /* 1 */ + font-weight: inherit; /* 1 */ + line-height: inherit; /* 1 */ + color: inherit; /* 1 */ + margin: 0; /* 2 */ + padding: 0; /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; /* 1 */ + background-color: transparent; /* 2 */ + background-image: none; /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; /* 1 */ + color: #9ca3af; /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; /* 1 */ + vertical-align: middle; /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ +[hidden] { + display: none; +} + +*, ::before, ::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} + +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; +} +.u-col-span-3 { + grid-column: span 3 / span 3; +} +.u-col-span-full { + grid-column: 1 / -1; +} +.u-grid { + display: grid; +} +.u-grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} +.u-gap-5 { + gap: 1.25rem; +} +.u-text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} +.u-font-bold { + font-weight: 700; +} +.u-text-slate-800 { + --tw-text-opacity: 1; + color: rgb(30 41 59 / var(--tw-text-opacity)); +} +.\[loadFonts\:API\] { + load-fonts: API; +} +:root { + --grid-columns: 4; + --grid-gutter: 0.625rem; + --grid-margin: 0.625rem; + --container-width: calc(100% - 2 * var(--grid-margin)); + --font-size-h1: clamp(36px, 0.0514285714 * calc(100 * var(--vw, 1vw)), 72px); + --font-size-h2: 1.75rem; + --font-size-h3: 1.5rem; + --font-size-h4: 1.25rem; + --font-size-h5: 1.125rem; + --font-size-h6: 1rem; +} +@media (min-width: 700px) { + :root { + --grid-columns: 12; + --grid-gutter: 1rem; + --grid-margin: 1.25rem; + } +} + +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers. + */ +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ +/** + * Remove the gray background on active links in IE 10. + */ +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ +/** + * Remove the border on images inside links in IE 10. + */ +img { + border-style: none; +} + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ +button, +[type=button], +[type=reset], +[type=submit] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type=button]::-moz-focus-inner, +[type=reset]::-moz-focus-inner, +[type=submit]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type=button]:-moz-focusring, +[type=reset]:-moz-focusring, +[type=submit]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ +[type=checkbox], +[type=radio] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type=number]::-webkit-inner-spin-button, +[type=number]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type=search] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ +[type=search]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ +/** + * Add the correct display in IE 10+. + */ +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ +[hidden] { + display: none; +} + +html { + box-sizing: border-box; +} + +template, +[hidden] { + display: none; +} + +*, +:before, +:after { + box-sizing: inherit; +} + +address { + font-style: inherit; +} + +dfn, +cite, +em, +i { + font-style: italic; +} + +b, +strong { + font-weight: 700; +} + +a { + text-decoration: none; +} +a svg { + pointer-events: none; +} + +ul, +ol { + margin: 0; + padding: 0; + list-style: none; +} + +p, +figure { + margin: 0; + padding: 0; +} + +h1, h2, h3, h4, h5, h6 { + margin: 0; +} + +a, area, button, input, label, select, textarea, [tabindex] { + touch-action: manipulation; +} + +[hreflang] > abbr[title] { + text-decoration: none; +} + +table { + border-spacing: 0; + border-collapse: collapse; +} + +hr { + display: block; + margin: 1em 0; + padding: 0; + height: 1px; + border: 0; + border-top: 1px solid #CCCCCC; +} + +audio, +canvas, +iframe, +img, +svg, +video { + vertical-align: middle; +} + +audio:not([controls]) { + display: none; + height: 0; +} + +img, +svg { + max-width: 100%; + height: auto; +} +img[width], img[height], +svg[width], +svg[height] { + max-width: none; +} + +img { + font-style: italic; +} + +svg { + fill: currentColor; +} + +input, +select, +textarea { + display: block; + margin: 0; + padding: 0; + width: 100%; + outline: 0; + border: 0; + border-radius: 0; + background: none transparent; + color: inherit; + font: inherit; + line-height: normal; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +select { + text-transform: none; +} +select::-ms-expand { + display: none; +} +select::-ms-value { + background: none; + color: inherit; +} + +textarea { + overflow: auto; + resize: vertical; +} + +button, +.c-button { + display: inline-block; + overflow: visible; + margin: 0; + padding: 0; + outline: 0; + border: 0; + background: none transparent; + color: inherit; + vertical-align: middle; + text-align: center; + text-decoration: none; + text-transform: none; + font: inherit; + line-height: normal; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; +} +button:focus, button:hover, +.c-button:focus, +.c-button:hover { + text-decoration: none; +} + +html.lenis { + height: auto; +} + +.lenis.lenis-smooth { + scroll-behavior: auto; +} + +.lenis.lenis-smooth [data-lenis-prevent] { + overscroll-behavior: contain; +} + +.lenis.lenis-stopped { + overflow: hidden; +} + +.lenis.lenis-scrolling iframe { + pointer-events: none; +} + +@font-face { + font-display: swap; + font-family: "Source Sans"; + src: url("../fonts/SourceSans3-Bold.woff2") format("woff2"), url("../fonts/SourceSans3-Bold.woff") format("woff"); + font-weight: 700; + font-style: normal; +} +@font-face { + font-display: swap; + font-family: "Source Sans"; + src: url("../fonts/SourceSans3-BoldIt.woff2") format("woff2"), url("../fonts/SourceSans3-BoldIt.woff") format("woff"); + font-weight: 700; + font-style: italic; +} +@font-face { + font-display: swap; + font-family: "Source Sans"; + src: url("../fonts/SourceSans3-Regular.woff2") format("woff2"), url("../fonts/SourceSans3-Regular.woff") format("woff"); + font-weight: 400; + font-style: normal; +} +@font-face { + font-display: swap; + font-family: "Source Sans"; + src: url("../fonts/SourceSans3-RegularIt.woff2") format("woff2"), url("../fonts/SourceSans3-RegularIt.woff") format("woff"); + font-weight: 400; + font-style: italic; +} +html { + min-height: 100%; + line-height: 1.5; + font-family: "Source Sans", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif; + color: black; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +@media (max-width: 699px) { + html { + font-size: 14px; + } +} +@media (min-width: 700px) and (max-width: 999px) { + html { + font-size: 14px; + } +} +@media (min-width: 1000px) and (max-width: 1199px) { + html { + font-size: 15px; + } +} +@media (min-width: 1200px) and (max-width: 1599px) { + html { + font-size: 16px; + } +} +@media (min-width: 1600px) and (max-width: 1999px) { + html { + font-size: 17px; + } +} +@media (min-width: 2000px) and (max-width: 2399px) { + html { + font-size: 18px; + } +} +@media (min-width: 2400px) { + html { + font-size: 20px; + } +} +html.is-loading { + cursor: wait; +} + +::-moz-selection { + background-color: white; + color: black; + text-shadow: none; +} + +::selection { + background-color: white; + color: black; + text-shadow: none; +} + +a { + color: #3297fd; +} +a:focus, a:hover { + color: #027dfa; +} + +.o-container { + margin-right: auto; + margin-left: auto; + padding-left: var(--grid-margin); + padding-right: var(--grid-margin); +} + +.o-ratio { + position: relative; + display: block; + overflow: hidden; +} +.o-ratio:before { + display: block; + padding-bottom: 100%; + width: 100%; + content: ""; +} + +.o-ratio_content, +.o-ratio > img, +.o-ratio > iframe, +.o-ratio > embed, +.o-ratio > object { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; +} + +.o-icon { + display: inline-block; + vertical-align: middle; +} +.o-icon svg { + --icon-height: calc(var(--icon-width) * math.div(1, (var(--icon-ratio)))); + display: block; + width: var(--icon-width); + height: var(--icon-height); + fill: currentColor; +} + +/** + * Usage: + * + * ```html + *
+ *
+ *

Hello

+ *
+ *
+ *

Hello

+ *
+ *
+ * ``` + */ +.o-grid { + display: grid; + width: 100%; +} +.o-grid:is(ul, ol) { + margin: 0; + padding: 0; + list-style: none; +} +.o-grid.-cols { + grid-template-columns: repeat(var(--grid-columns), 1fr); +} +.o-grid.-col-12 { + grid-template-columns: repeat(12, 1fr); +} +.o-grid.-col-4 { + grid-template-columns: repeat(4, 1fr); +} +@media (min-width: 1000px) { + .o-grid.-col-12\@from-medium { + grid-template-columns: repeat(12, 1fr); + } +} +.o-grid.-gutters { + gap: var(--grid-gutter); + -moz-column-gap: var(--grid-gutter); + column-gap: var(--grid-gutter); +} +.o-grid.-full-height { + height: 100%; +} +.o-grid.-top-items { + align-items: start; +} +.o-grid.-right-items { + justify-items: end; +} +.o-grid.-bottom-items { + align-items: end; +} +.o-grid.-left-items { + justify-items: start; +} +.o-grid.-center-items { + align-items: center; + justify-items: center; +} +.o-grid.-center-items-x { + justify-items: center; +} +.o-grid.-center-items-y { + align-items: center; +} +.o-grid.-stretch-items { + align-items: stretch; + justify-items: stretch; +} +.o-grid.-top-cells { + align-content: start; +} +.o-grid.-right-cells { + justify-content: end; +} +.o-grid.-bottom-cells { + align-content: end; +} +.o-grid.-left-cells { + justify-content: start; +} +.o-grid.-center-cells { + align-content: center; + justify-content: center; +} +.o-grid.-center-cells-x { + justify-content: center; +} +.o-grid.-center-cells-y { + align-content: center; +} +.o-grid.-stretch-cells { + align-content: stretch; + justify-content: stretch; +} +.o-grid.-space-around-cells { + align-content: space-around; + justify-content: space-around; +} +.o-grid.-space-around-cells-x { + justify-content: space-around; +} +.o-grid.-space-around-cells-y { + align-content: space-around; +} +.o-grid.-space-between-cells { + justify-content: space-between; + align-content: space-between; +} +.o-grid.-space-between-cells-x { + justify-content: space-between; +} +.o-grid.-space-between-cells-y { + align-content: space-between; +} +.o-grid.-space-evenly-cells { + justify-content: space-evenly; + align-content: space-evenly; +} +.o-grid.-space-evenly-cells-x { + justify-content: space-evenly; +} +.o-grid.-space-evenly-cells-y { + align-content: space-evenly; +} + +.o-grid_item { + grid-column-start: var(--gc-start, 1); + grid-column-end: var(--gc-end, -1); +} +.o-grid_item.-align-end { + align-self: end; +} + +.c-heading { + margin-bottom: 1.875rem; +} +.c-heading.-h1 { + font-size: var(--font-size-h1); +} +.c-heading.-h2 { + font-size: var(--font-size-h2); +} +.c-heading.-h3 { + font-size: var(--font-size-h3); +} +.c-heading.-h4 { + font-size: var(--font-size-h4); +} +.c-heading.-h5 { + font-size: var(--font-size-h5); +} +.c-heading.-h6 { + font-size: var(--font-size-h6); +} + +.c-button { + padding: 0.9375rem 1.25rem; + background-color: lightgray; +} +.c-button:focus, .c-button:hover { + background-color: darkgray; +} + +.c-form_item { + position: relative; + margin-bottom: 1.875rem; +} + +.c-form_label, .c-form_checkboxLabel, .c-form_radioLabel { + display: block; + margin-bottom: 0.625rem; +} + +.c-form_input, .c-form_textarea, .c-form_select_input { + padding: 0.625rem; + border: 1px solid lightgray; + background-color: white; +} +.c-form_input:hover, .c-form_textarea:hover, .c-form_select_input:hover { + border-color: darkgray; +} +.c-form_input:focus, .c-form_textarea:focus, .c-form_select_input:focus { + border-color: dimgray; +} +.c-form_input::-moz-placeholder, .c-form_textarea::-moz-placeholder, .c-form_select_input::-moz-placeholder { + color: gray; +} +.c-form_input::placeholder, .c-form_textarea::placeholder, .c-form_select_input::placeholder { + color: gray; +} + +.c-form_checkboxLabel, .c-form_radioLabel { + position: relative; + display: inline-block; + margin-right: 0.625rem; + margin-bottom: 0; + padding-left: 1.75rem; + cursor: pointer; +} +.c-form_checkboxLabel::before, .c-form_radioLabel::before, .c-form_checkboxLabel::after, .c-form_radioLabel::after { + position: absolute; + top: 50%; + left: 0; + display: inline-block; + margin-top: -0.5625rem; + padding: 0; + width: 1.125rem; + height: 1.125rem; + content: ""; +} +.c-form_checkboxLabel::before, .c-form_radioLabel::before { + background-color: white; + border: 1px solid lightgray; +} +.c-form_checkboxLabel::after, .c-form_radioLabel::after { + border-color: transparent; + background-color: transparent; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E"); + background-position: center; + background-size: 0.75rem; + background-repeat: no-repeat; + opacity: 0; +} +.c-form_checkboxLabel:hover::before, .c-form_radioLabel:hover::before { + border-color: darkgray; +} +.c-form_checkbox:focus + .c-form_checkboxLabel::before, .c-form_radio:focus + .c-form_checkboxLabel::before, .c-form_checkbox:focus + .c-form_radioLabel::before, .c-form_radio:focus + .c-form_radioLabel::before { + border-color: dimgray; +} +.c-form_checkbox:checked + .c-form_checkboxLabel::after, .c-form_radio:checked + .c-form_checkboxLabel::after, .c-form_checkbox:checked + .c-form_radioLabel::after, .c-form_radio:checked + .c-form_radioLabel::after { + opacity: 1; +} + +.c-form_checkbox, .c-form_radio { + position: absolute; + width: 0; + opacity: 0; +} + +.c-form_radioLabel::before, .c-form_radioLabel::after { + border-radius: 50%; +} +.c-form_radioLabel::after { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E"); + background-size: 0.375rem; +} + +.c-form_select { + position: relative; + cursor: pointer; +} +.c-form_select::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 2; + width: 2.5rem; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E"); + background-position: center; + background-size: 0.5rem; + background-repeat: no-repeat; + content: ""; + pointer-events: none; +} + +.c-form_select_input { + position: relative; + z-index: 1; + padding-right: 2.5rem; + cursor: pointer; +} + +.c-form_textarea { + min-height: 12.5rem; +} + +/* stylelint-disable */ +.u-2\:1::before { + padding-bottom: 50%; +} + +.u-4\:3::before { + padding-bottom: 75%; +} + +.u-16\:9::before { + padding-bottom: 56.25%; +} + +/* stylelint-enable */ + +@media (min-width: 1000px) { + + .medium\:u-col-span-4 { + grid-column: span 4 / span 4; + } + + .medium\:u-col-span-8 { + grid-column: span 8 / span 8; + } + + .medium\:u-col-start-1 { + grid-column-start: 1; + } + + .medium\:u-col-start-5 { + grid-column-start: 5; + } + + .medium\:u-col-end-13 { + grid-column-end: 13; + } + + .medium\:u-grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .medium\:u-underline { + text-decoration-line: underline; + } +} \ No newline at end of file diff --git a/www/assets/styles/main.css.map b/www/assets/styles/main.css.map index 6ea7775..7777af4 100644 --- a/www/assets/styles/main.css.map +++ b/www/assets/styles/main.css.map @@ -1 +1 @@ -{"version":3,"sources":["main.css"],"names":[],"mappings":"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Y,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAA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C,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBA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AC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0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C,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,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","file":"main.css","sourcesContent":[":root{--grid-columns: 4;--grid-gutter: 0.625rem;--grid-margin: 0.625rem;--container-width: calc(100% - 2 * var(--grid-margin));--font-size-h1: clamp(36px, 0.0514285714 * calc(100 * var(--vw, 1vw)), 72px);--font-size-h2: 1.75rem;--font-size-h3: 1.5rem;--font-size-h4: 1.25rem;--font-size-h5: 1.125rem;--font-size-h6: 1rem}@media(min-width: 700px){:root{--grid-columns: 12;--grid-gutter: 1rem;--grid-margin: 1.25rem}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}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}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{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-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{box-sizing:border-box}template,[hidden]{display:none}*,:before,:after{box-sizing:inherit}address{font-style:inherit}dfn,cite,em,i{font-style:italic}b,strong{font-weight:700}a{text-decoration:none}a svg{pointer-events:none}ul,ol{margin:0;padding:0;list-style:none}p,figure{margin:0;padding:0}h1,h2,h3,h4,h5,h6{margin:0}a,area,button,input,label,select,textarea,[tabindex]{-ms-touch-action:manipulation;touch-action:manipulation}[hreflang]>abbr[title]{text-decoration:none}table{border-spacing:0;border-collapse:collapse}hr{display:block;margin:1em 0;padding:0;height:1px;border:0;border-top:1px solid #ccc}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio:not([controls]){display:none;height:0}img,svg{max-width:100%;height:auto}img[width],img[height],svg[width],svg[height]{max-width:none}img{font-style:italic}svg{fill:currentColor}input,select,textarea{display:block;margin:0;padding:0;width:100%;outline:0;border:0;border-radius:0;background:none rgba(0,0,0,0);color:inherit;font:inherit;line-height:normal;appearance:none}select{text-transform:none}select::-ms-expand{display:none}select::-ms-value{background:none;color:inherit}textarea{overflow:auto;resize:vertical}button,.c-button{display:inline-block;overflow:visible;margin:0;padding:0;outline:0;border:0;background:none rgba(0,0,0,0);color:inherit;vertical-align:middle;text-align:center;text-decoration:none;text-transform:none;font:inherit;line-height:normal;cursor:pointer;user-select:none}button:focus,button:hover,.c-button:focus,.c-button:hover{text-decoration:none}html.lenis{height:auto}.lenis.lenis-smooth{scroll-behavior:auto}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-scrolling iframe{pointer-events:none}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-Bold.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-Bold.woff\") format(\"woff\");font-weight:700;font-style:normal}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-BoldIt.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-BoldIt.woff\") format(\"woff\");font-weight:700;font-style:italic}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-Regular.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-Regular.woff\") format(\"woff\");font-weight:400;font-style:normal}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-RegularIt.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-RegularIt.woff\") format(\"woff\");font-weight:400;font-style:italic}html{min-height:100%;line-height:1.5;font-family:\"Source Sans\",-apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,helvetica,Cantarell,Ubuntu,roboto,noto,arial,sans-serif;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(max-width: 699px){html{font-size:14px}}@media(min-width: 700px)and (max-width: 999px){html{font-size:14px}}@media(min-width: 1000px)and (max-width: 1199px){html{font-size:15px}}@media(min-width: 1200px)and (max-width: 1599px){html{font-size:16px}}@media(min-width: 1600px)and (max-width: 1999px){html{font-size:17px}}@media(min-width: 2000px)and (max-width: 2399px){html{font-size:18px}}@media(min-width: 2400px){html{font-size:20px}}html.is-loading{cursor:wait}::selection{background-color:#fff;color:#000;text-shadow:none}a{color:#3297fd}a:focus,a:hover{color:#027dfa}.o-container{margin-right:auto;margin-left:auto;padding-left:var(--grid-margin);padding-right:var(--grid-margin)}.o-ratio{position:relative;display:block;overflow:hidden}.o-ratio:before{display:block;padding-bottom:100%;width:100%;content:\"\"}.o-ratio_content,.o-ratio>img,.o-ratio>iframe,.o-ratio>embed,.o-ratio>object{position:absolute;top:0;bottom:0;left:0;width:100%}.o-icon{display:inline-block;vertical-align:middle}.o-icon svg{--icon-height: calc(var(--icon-width) * math.div(1, (var(--icon-ratio))));display:block;width:var(--icon-width);height:var(--icon-height);fill:currentColor}.o-grid{display:grid;width:100%}.o-grid:is(ul,ol){margin:0;padding:0;list-style:none}.o-grid.-cols{grid-template-columns:repeat(var(--grid-columns), 1fr)}.o-grid.-col-12{grid-template-columns:repeat(12, 1fr)}.o-grid.-col-4{grid-template-columns:repeat(4, 1fr)}@media(min-width: 1000px){.o-grid.-col-12\\@from-medium{grid-template-columns:repeat(12, 1fr)}}.o-grid.-gutters{gap:var(--grid-gutter);column-gap:var(--grid-gutter)}.o-grid.-full-height{height:100%}.o-grid.-top-items{align-items:start}.o-grid.-right-items{justify-items:end}.o-grid.-bottom-items{align-items:end}.o-grid.-left-items{justify-items:start}.o-grid.-center-items{align-items:center;justify-items:center}.o-grid.-center-items-x{justify-items:center}.o-grid.-center-items-y{align-items:center}.o-grid.-stretch-items{align-items:stretch;justify-items:stretch}.o-grid.-top-cells{align-content:start}.o-grid.-right-cells{justify-content:end}.o-grid.-bottom-cells{align-content:end}.o-grid.-left-cells{justify-content:start}.o-grid.-center-cells{align-content:center;justify-content:center}.o-grid.-center-cells-x{justify-content:center}.o-grid.-center-cells-y{align-content:center}.o-grid.-stretch-cells{align-content:stretch;justify-content:stretch}.o-grid.-space-around-cells{align-content:space-around;justify-content:space-around}.o-grid.-space-around-cells-x{justify-content:space-around}.o-grid.-space-around-cells-y{align-content:space-around}.o-grid.-space-between-cells{justify-content:space-between;align-content:space-between}.o-grid.-space-between-cells-x{justify-content:space-between}.o-grid.-space-between-cells-y{align-content:space-between}.o-grid.-space-evenly-cells{justify-content:space-evenly;align-content:space-evenly}.o-grid.-space-evenly-cells-x{justify-content:space-evenly}.o-grid.-space-evenly-cells-y{align-content:space-evenly}.o-grid_item{grid-column-start:var(--gc-start, 1);grid-column-end:var(--gc-end, -1)}.o-grid_item.-align-end{align-self:end}.c-heading{margin-bottom:1.875rem}.c-heading.-h1{font-size:var(--font-size-h1)}.c-heading.-h2{font-size:var(--font-size-h2)}.c-heading.-h3{font-size:var(--font-size-h3)}.c-heading.-h4{font-size:var(--font-size-h4)}.c-heading.-h5{font-size:var(--font-size-h5)}.c-heading.-h6{font-size:var(--font-size-h6)}.c-button{padding:.9375rem 1.25rem;background-color:#d3d3d3}.c-button:focus,.c-button:hover{background-color:#a9a9a9}.c-form_item{position:relative;margin-bottom:1.875rem}.c-form_label,.c-form_checkboxLabel,.c-form_radioLabel{display:block;margin-bottom:.625rem}.c-form_input,.c-form_textarea,.c-form_select_input{padding:.625rem;border:1px solid #d3d3d3;background-color:#fff}.c-form_input:hover,.c-form_textarea:hover,.c-form_select_input:hover{border-color:#a9a9a9}.c-form_input:focus,.c-form_textarea:focus,.c-form_select_input:focus{border-color:dimgray}.c-form_input::placeholder,.c-form_textarea::placeholder,.c-form_select_input::placeholder{color:gray}.c-form_checkboxLabel,.c-form_radioLabel{position:relative;display:inline-block;margin-right:.625rem;margin-bottom:0;padding-left:1.75rem;cursor:pointer}.c-form_checkboxLabel::before,.c-form_radioLabel::before,.c-form_checkboxLabel::after,.c-form_radioLabel::after{position:absolute;top:50%;left:0;display:inline-block;margin-top:-0.5625rem;padding:0;width:1.125rem;height:1.125rem;content:\"\"}.c-form_checkboxLabel::before,.c-form_radioLabel::before{background-color:#fff;border:1px solid #d3d3d3}.c-form_checkboxLabel::after,.c-form_radioLabel::after{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E\");background-position:center;background-size:.75rem;background-repeat:no-repeat;opacity:0}.c-form_checkboxLabel:hover::before,.c-form_radioLabel:hover::before{border-color:#a9a9a9}.c-form_checkbox:focus+.c-form_checkboxLabel::before,.c-form_radio:focus+.c-form_checkboxLabel::before,.c-form_checkbox:focus+.c-form_radioLabel::before,.c-form_radio:focus+.c-form_radioLabel::before{border-color:dimgray}.c-form_checkbox:checked+.c-form_checkboxLabel::after,.c-form_radio:checked+.c-form_checkboxLabel::after,.c-form_checkbox:checked+.c-form_radioLabel::after,.c-form_radio:checked+.c-form_radioLabel::after{opacity:1}.c-form_checkbox,.c-form_radio{position:absolute;width:0;opacity:0}.c-form_radioLabel::before,.c-form_radioLabel::after{border-radius:50%}.c-form_radioLabel::after{background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E\");background-size:.375rem}.c-form_select{position:relative;cursor:pointer}.c-form_select::after{position:absolute;top:0;right:0;bottom:0;z-index:2;width:2.5rem;background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E\");background-position:center;background-size:.5rem;background-repeat:no-repeat;content:\"\";pointer-events:none}.c-form_select_input{position:relative;z-index:1;padding-right:2.5rem;cursor:pointer}.c-form_textarea{min-height:12.5rem}.u-2\\:1::before{padding-bottom:50%}.u-4\\:3::before{padding-bottom:75%}.u-16\\:9::before{padding-bottom:56.25%}.u-gc-1\\/1{--gc-start: 1;--gc-end: 1}@media(min-width: 500px){.u-gc-1\\/1\\@from-tiny{--gc-start: 1;--gc-end: 1}}@media(max-width: 499px){.u-gc-1\\/1\\@to-tiny{--gc-start: 1;--gc-end: 1}}.u-gc-1\\/2{--gc-start: 1;--gc-end: 2}@media(min-width: 500px){.u-gc-1\\/2\\@from-tiny{--gc-start: 1;--gc-end: 2}}@media(max-width: 499px){.u-gc-1\\/2\\@to-tiny{--gc-start: 1;--gc-end: 2}}.u-gc-1\\/3{--gc-start: 1;--gc-end: 3}@media(min-width: 500px){.u-gc-1\\/3\\@from-tiny{--gc-start: 1;--gc-end: 3}}@media(max-width: 499px){.u-gc-1\\/3\\@to-tiny{--gc-start: 1;--gc-end: 3}}.u-gc-1\\/4{--gc-start: 1;--gc-end: 4}@media(min-width: 500px){.u-gc-1\\/4\\@from-tiny{--gc-start: 1;--gc-end: 4}}@media(max-width: 499px){.u-gc-1\\/4\\@to-tiny{--gc-start: 1;--gc-end: 4}}.u-gc-1\\/5{--gc-start: 1;--gc-end: 5}@media(min-width: 500px){.u-gc-1\\/5\\@from-tiny{--gc-start: 1;--gc-end: 5}}@media(max-width: 499px){.u-gc-1\\/5\\@to-tiny{--gc-start: 1;--gc-end: 5}}.u-gc-1\\/6{--gc-start: 1;--gc-end: 6}@media(min-width: 500px){.u-gc-1\\/6\\@from-tiny{--gc-start: 1;--gc-end: 6}}@media(max-width: 499px){.u-gc-1\\/6\\@to-tiny{--gc-start: 1;--gc-end: 6}}.u-gc-1\\/7{--gc-start: 1;--gc-end: 7}@media(min-width: 500px){.u-gc-1\\/7\\@from-tiny{--gc-start: 1;--gc-end: 7}}@media(max-width: 499px){.u-gc-1\\/7\\@to-tiny{--gc-start: 1;--gc-end: 7}}.u-gc-1\\/8{--gc-start: 1;--gc-end: 8}@media(min-width: 500px){.u-gc-1\\/8\\@from-tiny{--gc-start: 1;--gc-end: 8}}@media(max-width: 499px){.u-gc-1\\/8\\@to-tiny{--gc-start: 1;--gc-end: 8}}.u-gc-1\\/9{--gc-start: 1;--gc-end: 9}@media(min-width: 500px){.u-gc-1\\/9\\@from-tiny{--gc-start: 1;--gc-end: 9}}@media(max-width: 499px){.u-gc-1\\/9\\@to-tiny{--gc-start: 1;--gc-end: 9}}.u-gc-1\\/10{--gc-start: 1;--gc-end: 10}@media(min-width: 500px){.u-gc-1\\/10\\@from-tiny{--gc-start: 1;--gc-end: 10}}@media(max-width: 499px){.u-gc-1\\/10\\@to-tiny{--gc-start: 1;--gc-end: 10}}.u-gc-1\\/11{--gc-start: 1;--gc-end: 11}@media(min-width: 500px){.u-gc-1\\/11\\@from-tiny{--gc-start: 1;--gc-end: 11}}@media(max-width: 499px){.u-gc-1\\/11\\@to-tiny{--gc-start: 1;--gc-end: 11}}.u-gc-1\\/12{--gc-start: 1;--gc-end: 12}@media(min-width: 500px){.u-gc-1\\/12\\@from-tiny{--gc-start: 1;--gc-end: 12}}@media(max-width: 499px){.u-gc-1\\/12\\@to-tiny{--gc-start: 1;--gc-end: 12}}.u-gc-1\\/13{--gc-start: 1;--gc-end: 13}@media(min-width: 500px){.u-gc-1\\/13\\@from-tiny{--gc-start: 1;--gc-end: 13}}@media(max-width: 499px){.u-gc-1\\/13\\@to-tiny{--gc-start: 1;--gc-end: 13}}.u-gc-2\\/1{--gc-start: 2;--gc-end: 1}@media(min-width: 500px){.u-gc-2\\/1\\@from-tiny{--gc-start: 2;--gc-end: 1}}@media(max-width: 499px){.u-gc-2\\/1\\@to-tiny{--gc-start: 2;--gc-end: 1}}.u-gc-2\\/2{--gc-start: 2;--gc-end: 2}@media(min-width: 500px){.u-gc-2\\/2\\@from-tiny{--gc-start: 2;--gc-end: 2}}@media(max-width: 499px){.u-gc-2\\/2\\@to-tiny{--gc-start: 2;--gc-end: 2}}.u-gc-2\\/3{--gc-start: 2;--gc-end: 3}@media(min-width: 500px){.u-gc-2\\/3\\@from-tiny{--gc-start: 2;--gc-end: 3}}@media(max-width: 499px){.u-gc-2\\/3\\@to-tiny{--gc-start: 2;--gc-end: 3}}.u-gc-2\\/4{--gc-start: 2;--gc-end: 4}@media(min-width: 500px){.u-gc-2\\/4\\@from-tiny{--gc-start: 2;--gc-end: 4}}@media(max-width: 499px){.u-gc-2\\/4\\@to-tiny{--gc-start: 2;--gc-end: 4}}.u-gc-2\\/5{--gc-start: 2;--gc-end: 5}@media(min-width: 500px){.u-gc-2\\/5\\@from-tiny{--gc-start: 2;--gc-end: 5}}@media(max-width: 499px){.u-gc-2\\/5\\@to-tiny{--gc-start: 2;--gc-end: 5}}.u-gc-2\\/6{--gc-start: 2;--gc-end: 6}@media(min-width: 500px){.u-gc-2\\/6\\@from-tiny{--gc-start: 2;--gc-end: 6}}@media(max-width: 499px){.u-gc-2\\/6\\@to-tiny{--gc-start: 2;--gc-end: 6}}.u-gc-2\\/7{--gc-start: 2;--gc-end: 7}@media(min-width: 500px){.u-gc-2\\/7\\@from-tiny{--gc-start: 2;--gc-end: 7}}@media(max-width: 499px){.u-gc-2\\/7\\@to-tiny{--gc-start: 2;--gc-end: 7}}.u-gc-2\\/8{--gc-start: 2;--gc-end: 8}@media(min-width: 500px){.u-gc-2\\/8\\@from-tiny{--gc-start: 2;--gc-end: 8}}@media(max-width: 499px){.u-gc-2\\/8\\@to-tiny{--gc-start: 2;--gc-end: 8}}.u-gc-2\\/9{--gc-start: 2;--gc-end: 9}@media(min-width: 500px){.u-gc-2\\/9\\@from-tiny{--gc-start: 2;--gc-end: 9}}@media(max-width: 499px){.u-gc-2\\/9\\@to-tiny{--gc-start: 2;--gc-end: 9}}.u-gc-2\\/10{--gc-start: 2;--gc-end: 10}@media(min-width: 500px){.u-gc-2\\/10\\@from-tiny{--gc-start: 2;--gc-end: 10}}@media(max-width: 499px){.u-gc-2\\/10\\@to-tiny{--gc-start: 2;--gc-end: 10}}.u-gc-2\\/11{--gc-start: 2;--gc-end: 11}@media(min-width: 500px){.u-gc-2\\/11\\@from-tiny{--gc-start: 2;--gc-end: 11}}@media(max-width: 499px){.u-gc-2\\/11\\@to-tiny{--gc-start: 2;--gc-end: 11}}.u-gc-2\\/12{--gc-start: 2;--gc-end: 12}@media(min-width: 500px){.u-gc-2\\/12\\@from-tiny{--gc-start: 2;--gc-end: 12}}@media(max-width: 499px){.u-gc-2\\/12\\@to-tiny{--gc-start: 2;--gc-end: 12}}.u-gc-2\\/13{--gc-start: 2;--gc-end: 13}@media(min-width: 500px){.u-gc-2\\/13\\@from-tiny{--gc-start: 2;--gc-end: 13}}@media(max-width: 499px){.u-gc-2\\/13\\@to-tiny{--gc-start: 2;--gc-end: 13}}.u-gc-3\\/1{--gc-start: 3;--gc-end: 1}@media(min-width: 500px){.u-gc-3\\/1\\@from-tiny{--gc-start: 3;--gc-end: 1}}@media(max-width: 499px){.u-gc-3\\/1\\@to-tiny{--gc-start: 3;--gc-end: 1}}.u-gc-3\\/2{--gc-start: 3;--gc-end: 2}@media(min-width: 500px){.u-gc-3\\/2\\@from-tiny{--gc-start: 3;--gc-end: 2}}@media(max-width: 499px){.u-gc-3\\/2\\@to-tiny{--gc-start: 3;--gc-end: 2}}.u-gc-3\\/3{--gc-start: 3;--gc-end: 3}@media(min-width: 500px){.u-gc-3\\/3\\@from-tiny{--gc-start: 3;--gc-end: 3}}@media(max-width: 499px){.u-gc-3\\/3\\@to-tiny{--gc-start: 3;--gc-end: 3}}.u-gc-3\\/4{--gc-start: 3;--gc-end: 4}@media(min-width: 500px){.u-gc-3\\/4\\@from-tiny{--gc-start: 3;--gc-end: 4}}@media(max-width: 499px){.u-gc-3\\/4\\@to-tiny{--gc-start: 3;--gc-end: 4}}.u-gc-3\\/5{--gc-start: 3;--gc-end: 5}@media(min-width: 500px){.u-gc-3\\/5\\@from-tiny{--gc-start: 3;--gc-end: 5}}@media(max-width: 499px){.u-gc-3\\/5\\@to-tiny{--gc-start: 3;--gc-end: 5}}.u-gc-3\\/6{--gc-start: 3;--gc-end: 6}@media(min-width: 500px){.u-gc-3\\/6\\@from-tiny{--gc-start: 3;--gc-end: 6}}@media(max-width: 499px){.u-gc-3\\/6\\@to-tiny{--gc-start: 3;--gc-end: 6}}.u-gc-3\\/7{--gc-start: 3;--gc-end: 7}@media(min-width: 500px){.u-gc-3\\/7\\@from-tiny{--gc-start: 3;--gc-end: 7}}@media(max-width: 499px){.u-gc-3\\/7\\@to-tiny{--gc-start: 3;--gc-end: 7}}.u-gc-3\\/8{--gc-start: 3;--gc-end: 8}@media(min-width: 500px){.u-gc-3\\/8\\@from-tiny{--gc-start: 3;--gc-end: 8}}@media(max-width: 499px){.u-gc-3\\/8\\@to-tiny{--gc-start: 3;--gc-end: 8}}.u-gc-3\\/9{--gc-start: 3;--gc-end: 9}@media(min-width: 500px){.u-gc-3\\/9\\@from-tiny{--gc-start: 3;--gc-end: 9}}@media(max-width: 499px){.u-gc-3\\/9\\@to-tiny{--gc-start: 3;--gc-end: 9}}.u-gc-3\\/10{--gc-start: 3;--gc-end: 10}@media(min-width: 500px){.u-gc-3\\/10\\@from-tiny{--gc-start: 3;--gc-end: 10}}@media(max-width: 499px){.u-gc-3\\/10\\@to-tiny{--gc-start: 3;--gc-end: 10}}.u-gc-3\\/11{--gc-start: 3;--gc-end: 11}@media(min-width: 500px){.u-gc-3\\/11\\@from-tiny{--gc-start: 3;--gc-end: 11}}@media(max-width: 499px){.u-gc-3\\/11\\@to-tiny{--gc-start: 3;--gc-end: 11}}.u-gc-3\\/12{--gc-start: 3;--gc-end: 12}@media(min-width: 500px){.u-gc-3\\/12\\@from-tiny{--gc-start: 3;--gc-end: 12}}@media(max-width: 499px){.u-gc-3\\/12\\@to-tiny{--gc-start: 3;--gc-end: 12}}.u-gc-3\\/13{--gc-start: 3;--gc-end: 13}@media(min-width: 500px){.u-gc-3\\/13\\@from-tiny{--gc-start: 3;--gc-end: 13}}@media(max-width: 499px){.u-gc-3\\/13\\@to-tiny{--gc-start: 3;--gc-end: 13}}.u-gc-4\\/1{--gc-start: 4;--gc-end: 1}@media(min-width: 500px){.u-gc-4\\/1\\@from-tiny{--gc-start: 4;--gc-end: 1}}@media(max-width: 499px){.u-gc-4\\/1\\@to-tiny{--gc-start: 4;--gc-end: 1}}.u-gc-4\\/2{--gc-start: 4;--gc-end: 2}@media(min-width: 500px){.u-gc-4\\/2\\@from-tiny{--gc-start: 4;--gc-end: 2}}@media(max-width: 499px){.u-gc-4\\/2\\@to-tiny{--gc-start: 4;--gc-end: 2}}.u-gc-4\\/3{--gc-start: 4;--gc-end: 3}@media(min-width: 500px){.u-gc-4\\/3\\@from-tiny{--gc-start: 4;--gc-end: 3}}@media(max-width: 499px){.u-gc-4\\/3\\@to-tiny{--gc-start: 4;--gc-end: 3}}.u-gc-4\\/4{--gc-start: 4;--gc-end: 4}@media(min-width: 500px){.u-gc-4\\/4\\@from-tiny{--gc-start: 4;--gc-end: 4}}@media(max-width: 499px){.u-gc-4\\/4\\@to-tiny{--gc-start: 4;--gc-end: 4}}.u-gc-4\\/5{--gc-start: 4;--gc-end: 5}@media(min-width: 500px){.u-gc-4\\/5\\@from-tiny{--gc-start: 4;--gc-end: 5}}@media(max-width: 499px){.u-gc-4\\/5\\@to-tiny{--gc-start: 4;--gc-end: 5}}.u-gc-4\\/6{--gc-start: 4;--gc-end: 6}@media(min-width: 500px){.u-gc-4\\/6\\@from-tiny{--gc-start: 4;--gc-end: 6}}@media(max-width: 499px){.u-gc-4\\/6\\@to-tiny{--gc-start: 4;--gc-end: 6}}.u-gc-4\\/7{--gc-start: 4;--gc-end: 7}@media(min-width: 500px){.u-gc-4\\/7\\@from-tiny{--gc-start: 4;--gc-end: 7}}@media(max-width: 499px){.u-gc-4\\/7\\@to-tiny{--gc-start: 4;--gc-end: 7}}.u-gc-4\\/8{--gc-start: 4;--gc-end: 8}@media(min-width: 500px){.u-gc-4\\/8\\@from-tiny{--gc-start: 4;--gc-end: 8}}@media(max-width: 499px){.u-gc-4\\/8\\@to-tiny{--gc-start: 4;--gc-end: 8}}.u-gc-4\\/9{--gc-start: 4;--gc-end: 9}@media(min-width: 500px){.u-gc-4\\/9\\@from-tiny{--gc-start: 4;--gc-end: 9}}@media(max-width: 499px){.u-gc-4\\/9\\@to-tiny{--gc-start: 4;--gc-end: 9}}.u-gc-4\\/10{--gc-start: 4;--gc-end: 10}@media(min-width: 500px){.u-gc-4\\/10\\@from-tiny{--gc-start: 4;--gc-end: 10}}@media(max-width: 499px){.u-gc-4\\/10\\@to-tiny{--gc-start: 4;--gc-end: 10}}.u-gc-4\\/11{--gc-start: 4;--gc-end: 11}@media(min-width: 500px){.u-gc-4\\/11\\@from-tiny{--gc-start: 4;--gc-end: 11}}@media(max-width: 499px){.u-gc-4\\/11\\@to-tiny{--gc-start: 4;--gc-end: 11}}.u-gc-4\\/12{--gc-start: 4;--gc-end: 12}@media(min-width: 500px){.u-gc-4\\/12\\@from-tiny{--gc-start: 4;--gc-end: 12}}@media(max-width: 499px){.u-gc-4\\/12\\@to-tiny{--gc-start: 4;--gc-end: 12}}.u-gc-4\\/13{--gc-start: 4;--gc-end: 13}@media(min-width: 500px){.u-gc-4\\/13\\@from-tiny{--gc-start: 4;--gc-end: 13}}@media(max-width: 499px){.u-gc-4\\/13\\@to-tiny{--gc-start: 4;--gc-end: 13}}.u-gc-5\\/1{--gc-start: 5;--gc-end: 1}@media(min-width: 500px){.u-gc-5\\/1\\@from-tiny{--gc-start: 5;--gc-end: 1}}@media(max-width: 499px){.u-gc-5\\/1\\@to-tiny{--gc-start: 5;--gc-end: 1}}.u-gc-5\\/2{--gc-start: 5;--gc-end: 2}@media(min-width: 500px){.u-gc-5\\/2\\@from-tiny{--gc-start: 5;--gc-end: 2}}@media(max-width: 499px){.u-gc-5\\/2\\@to-tiny{--gc-start: 5;--gc-end: 2}}.u-gc-5\\/3{--gc-start: 5;--gc-end: 3}@media(min-width: 500px){.u-gc-5\\/3\\@from-tiny{--gc-start: 5;--gc-end: 3}}@media(max-width: 499px){.u-gc-5\\/3\\@to-tiny{--gc-start: 5;--gc-end: 3}}.u-gc-5\\/4{--gc-start: 5;--gc-end: 4}@media(min-width: 500px){.u-gc-5\\/4\\@from-tiny{--gc-start: 5;--gc-end: 4}}@media(max-width: 499px){.u-gc-5\\/4\\@to-tiny{--gc-start: 5;--gc-end: 4}}.u-gc-5\\/5{--gc-start: 5;--gc-end: 5}@media(min-width: 500px){.u-gc-5\\/5\\@from-tiny{--gc-start: 5;--gc-end: 5}}@media(max-width: 499px){.u-gc-5\\/5\\@to-tiny{--gc-start: 5;--gc-end: 5}}.u-gc-5\\/6{--gc-start: 5;--gc-end: 6}@media(min-width: 500px){.u-gc-5\\/6\\@from-tiny{--gc-start: 5;--gc-end: 6}}@media(max-width: 499px){.u-gc-5\\/6\\@to-tiny{--gc-start: 5;--gc-end: 6}}.u-gc-5\\/7{--gc-start: 5;--gc-end: 7}@media(min-width: 500px){.u-gc-5\\/7\\@from-tiny{--gc-start: 5;--gc-end: 7}}@media(max-width: 499px){.u-gc-5\\/7\\@to-tiny{--gc-start: 5;--gc-end: 7}}.u-gc-5\\/8{--gc-start: 5;--gc-end: 8}@media(min-width: 500px){.u-gc-5\\/8\\@from-tiny{--gc-start: 5;--gc-end: 8}}@media(max-width: 499px){.u-gc-5\\/8\\@to-tiny{--gc-start: 5;--gc-end: 8}}.u-gc-5\\/9{--gc-start: 5;--gc-end: 9}@media(min-width: 500px){.u-gc-5\\/9\\@from-tiny{--gc-start: 5;--gc-end: 9}}@media(max-width: 499px){.u-gc-5\\/9\\@to-tiny{--gc-start: 5;--gc-end: 9}}.u-gc-5\\/10{--gc-start: 5;--gc-end: 10}@media(min-width: 500px){.u-gc-5\\/10\\@from-tiny{--gc-start: 5;--gc-end: 10}}@media(max-width: 499px){.u-gc-5\\/10\\@to-tiny{--gc-start: 5;--gc-end: 10}}.u-gc-5\\/11{--gc-start: 5;--gc-end: 11}@media(min-width: 500px){.u-gc-5\\/11\\@from-tiny{--gc-start: 5;--gc-end: 11}}@media(max-width: 499px){.u-gc-5\\/11\\@to-tiny{--gc-start: 5;--gc-end: 11}}.u-gc-5\\/12{--gc-start: 5;--gc-end: 12}@media(min-width: 500px){.u-gc-5\\/12\\@from-tiny{--gc-start: 5;--gc-end: 12}}@media(max-width: 499px){.u-gc-5\\/12\\@to-tiny{--gc-start: 5;--gc-end: 12}}.u-gc-5\\/13{--gc-start: 5;--gc-end: 13}@media(min-width: 500px){.u-gc-5\\/13\\@from-tiny{--gc-start: 5;--gc-end: 13}}@media(max-width: 499px){.u-gc-5\\/13\\@to-tiny{--gc-start: 5;--gc-end: 13}}.u-gc-6\\/1{--gc-start: 6;--gc-end: 1}@media(min-width: 500px){.u-gc-6\\/1\\@from-tiny{--gc-start: 6;--gc-end: 1}}@media(max-width: 499px){.u-gc-6\\/1\\@to-tiny{--gc-start: 6;--gc-end: 1}}.u-gc-6\\/2{--gc-start: 6;--gc-end: 2}@media(min-width: 500px){.u-gc-6\\/2\\@from-tiny{--gc-start: 6;--gc-end: 2}}@media(max-width: 499px){.u-gc-6\\/2\\@to-tiny{--gc-start: 6;--gc-end: 2}}.u-gc-6\\/3{--gc-start: 6;--gc-end: 3}@media(min-width: 500px){.u-gc-6\\/3\\@from-tiny{--gc-start: 6;--gc-end: 3}}@media(max-width: 499px){.u-gc-6\\/3\\@to-tiny{--gc-start: 6;--gc-end: 3}}.u-gc-6\\/4{--gc-start: 6;--gc-end: 4}@media(min-width: 500px){.u-gc-6\\/4\\@from-tiny{--gc-start: 6;--gc-end: 4}}@media(max-width: 499px){.u-gc-6\\/4\\@to-tiny{--gc-start: 6;--gc-end: 4}}.u-gc-6\\/5{--gc-start: 6;--gc-end: 5}@media(min-width: 500px){.u-gc-6\\/5\\@from-tiny{--gc-start: 6;--gc-end: 5}}@media(max-width: 499px){.u-gc-6\\/5\\@to-tiny{--gc-start: 6;--gc-end: 5}}.u-gc-6\\/6{--gc-start: 6;--gc-end: 6}@media(min-width: 500px){.u-gc-6\\/6\\@from-tiny{--gc-start: 6;--gc-end: 6}}@media(max-width: 499px){.u-gc-6\\/6\\@to-tiny{--gc-start: 6;--gc-end: 6}}.u-gc-6\\/7{--gc-start: 6;--gc-end: 7}@media(min-width: 500px){.u-gc-6\\/7\\@from-tiny{--gc-start: 6;--gc-end: 7}}@media(max-width: 499px){.u-gc-6\\/7\\@to-tiny{--gc-start: 6;--gc-end: 7}}.u-gc-6\\/8{--gc-start: 6;--gc-end: 8}@media(min-width: 500px){.u-gc-6\\/8\\@from-tiny{--gc-start: 6;--gc-end: 8}}@media(max-width: 499px){.u-gc-6\\/8\\@to-tiny{--gc-start: 6;--gc-end: 8}}.u-gc-6\\/9{--gc-start: 6;--gc-end: 9}@media(min-width: 500px){.u-gc-6\\/9\\@from-tiny{--gc-start: 6;--gc-end: 9}}@media(max-width: 499px){.u-gc-6\\/9\\@to-tiny{--gc-start: 6;--gc-end: 9}}.u-gc-6\\/10{--gc-start: 6;--gc-end: 10}@media(min-width: 500px){.u-gc-6\\/10\\@from-tiny{--gc-start: 6;--gc-end: 10}}@media(max-width: 499px){.u-gc-6\\/10\\@to-tiny{--gc-start: 6;--gc-end: 10}}.u-gc-6\\/11{--gc-start: 6;--gc-end: 11}@media(min-width: 500px){.u-gc-6\\/11\\@from-tiny{--gc-start: 6;--gc-end: 11}}@media(max-width: 499px){.u-gc-6\\/11\\@to-tiny{--gc-start: 6;--gc-end: 11}}.u-gc-6\\/12{--gc-start: 6;--gc-end: 12}@media(min-width: 500px){.u-gc-6\\/12\\@from-tiny{--gc-start: 6;--gc-end: 12}}@media(max-width: 499px){.u-gc-6\\/12\\@to-tiny{--gc-start: 6;--gc-end: 12}}.u-gc-6\\/13{--gc-start: 6;--gc-end: 13}@media(min-width: 500px){.u-gc-6\\/13\\@from-tiny{--gc-start: 6;--gc-end: 13}}@media(max-width: 499px){.u-gc-6\\/13\\@to-tiny{--gc-start: 6;--gc-end: 13}}.u-gc-7\\/1{--gc-start: 7;--gc-end: 1}@media(min-width: 500px){.u-gc-7\\/1\\@from-tiny{--gc-start: 7;--gc-end: 1}}@media(max-width: 499px){.u-gc-7\\/1\\@to-tiny{--gc-start: 7;--gc-end: 1}}.u-gc-7\\/2{--gc-start: 7;--gc-end: 2}@media(min-width: 500px){.u-gc-7\\/2\\@from-tiny{--gc-start: 7;--gc-end: 2}}@media(max-width: 499px){.u-gc-7\\/2\\@to-tiny{--gc-start: 7;--gc-end: 2}}.u-gc-7\\/3{--gc-start: 7;--gc-end: 3}@media(min-width: 500px){.u-gc-7\\/3\\@from-tiny{--gc-start: 7;--gc-end: 3}}@media(max-width: 499px){.u-gc-7\\/3\\@to-tiny{--gc-start: 7;--gc-end: 3}}.u-gc-7\\/4{--gc-start: 7;--gc-end: 4}@media(min-width: 500px){.u-gc-7\\/4\\@from-tiny{--gc-start: 7;--gc-end: 4}}@media(max-width: 499px){.u-gc-7\\/4\\@to-tiny{--gc-start: 7;--gc-end: 4}}.u-gc-7\\/5{--gc-start: 7;--gc-end: 5}@media(min-width: 500px){.u-gc-7\\/5\\@from-tiny{--gc-start: 7;--gc-end: 5}}@media(max-width: 499px){.u-gc-7\\/5\\@to-tiny{--gc-start: 7;--gc-end: 5}}.u-gc-7\\/6{--gc-start: 7;--gc-end: 6}@media(min-width: 500px){.u-gc-7\\/6\\@from-tiny{--gc-start: 7;--gc-end: 6}}@media(max-width: 499px){.u-gc-7\\/6\\@to-tiny{--gc-start: 7;--gc-end: 6}}.u-gc-7\\/7{--gc-start: 7;--gc-end: 7}@media(min-width: 500px){.u-gc-7\\/7\\@from-tiny{--gc-start: 7;--gc-end: 7}}@media(max-width: 499px){.u-gc-7\\/7\\@to-tiny{--gc-start: 7;--gc-end: 7}}.u-gc-7\\/8{--gc-start: 7;--gc-end: 8}@media(min-width: 500px){.u-gc-7\\/8\\@from-tiny{--gc-start: 7;--gc-end: 8}}@media(max-width: 499px){.u-gc-7\\/8\\@to-tiny{--gc-start: 7;--gc-end: 8}}.u-gc-7\\/9{--gc-start: 7;--gc-end: 9}@media(min-width: 500px){.u-gc-7\\/9\\@from-tiny{--gc-start: 7;--gc-end: 9}}@media(max-width: 499px){.u-gc-7\\/9\\@to-tiny{--gc-start: 7;--gc-end: 9}}.u-gc-7\\/10{--gc-start: 7;--gc-end: 10}@media(min-width: 500px){.u-gc-7\\/10\\@from-tiny{--gc-start: 7;--gc-end: 10}}@media(max-width: 499px){.u-gc-7\\/10\\@to-tiny{--gc-start: 7;--gc-end: 10}}.u-gc-7\\/11{--gc-start: 7;--gc-end: 11}@media(min-width: 500px){.u-gc-7\\/11\\@from-tiny{--gc-start: 7;--gc-end: 11}}@media(max-width: 499px){.u-gc-7\\/11\\@to-tiny{--gc-start: 7;--gc-end: 11}}.u-gc-7\\/12{--gc-start: 7;--gc-end: 12}@media(min-width: 500px){.u-gc-7\\/12\\@from-tiny{--gc-start: 7;--gc-end: 12}}@media(max-width: 499px){.u-gc-7\\/12\\@to-tiny{--gc-start: 7;--gc-end: 12}}.u-gc-7\\/13{--gc-start: 7;--gc-end: 13}@media(min-width: 500px){.u-gc-7\\/13\\@from-tiny{--gc-start: 7;--gc-end: 13}}@media(max-width: 499px){.u-gc-7\\/13\\@to-tiny{--gc-start: 7;--gc-end: 13}}.u-gc-8\\/1{--gc-start: 8;--gc-end: 1}@media(min-width: 500px){.u-gc-8\\/1\\@from-tiny{--gc-start: 8;--gc-end: 1}}@media(max-width: 499px){.u-gc-8\\/1\\@to-tiny{--gc-start: 8;--gc-end: 1}}.u-gc-8\\/2{--gc-start: 8;--gc-end: 2}@media(min-width: 500px){.u-gc-8\\/2\\@from-tiny{--gc-start: 8;--gc-end: 2}}@media(max-width: 499px){.u-gc-8\\/2\\@to-tiny{--gc-start: 8;--gc-end: 2}}.u-gc-8\\/3{--gc-start: 8;--gc-end: 3}@media(min-width: 500px){.u-gc-8\\/3\\@from-tiny{--gc-start: 8;--gc-end: 3}}@media(max-width: 499px){.u-gc-8\\/3\\@to-tiny{--gc-start: 8;--gc-end: 3}}.u-gc-8\\/4{--gc-start: 8;--gc-end: 4}@media(min-width: 500px){.u-gc-8\\/4\\@from-tiny{--gc-start: 8;--gc-end: 4}}@media(max-width: 499px){.u-gc-8\\/4\\@to-tiny{--gc-start: 8;--gc-end: 4}}.u-gc-8\\/5{--gc-start: 8;--gc-end: 5}@media(min-width: 500px){.u-gc-8\\/5\\@from-tiny{--gc-start: 8;--gc-end: 5}}@media(max-width: 499px){.u-gc-8\\/5\\@to-tiny{--gc-start: 8;--gc-end: 5}}.u-gc-8\\/6{--gc-start: 8;--gc-end: 6}@media(min-width: 500px){.u-gc-8\\/6\\@from-tiny{--gc-start: 8;--gc-end: 6}}@media(max-width: 499px){.u-gc-8\\/6\\@to-tiny{--gc-start: 8;--gc-end: 6}}.u-gc-8\\/7{--gc-start: 8;--gc-end: 7}@media(min-width: 500px){.u-gc-8\\/7\\@from-tiny{--gc-start: 8;--gc-end: 7}}@media(max-width: 499px){.u-gc-8\\/7\\@to-tiny{--gc-start: 8;--gc-end: 7}}.u-gc-8\\/8{--gc-start: 8;--gc-end: 8}@media(min-width: 500px){.u-gc-8\\/8\\@from-tiny{--gc-start: 8;--gc-end: 8}}@media(max-width: 499px){.u-gc-8\\/8\\@to-tiny{--gc-start: 8;--gc-end: 8}}.u-gc-8\\/9{--gc-start: 8;--gc-end: 9}@media(min-width: 500px){.u-gc-8\\/9\\@from-tiny{--gc-start: 8;--gc-end: 9}}@media(max-width: 499px){.u-gc-8\\/9\\@to-tiny{--gc-start: 8;--gc-end: 9}}.u-gc-8\\/10{--gc-start: 8;--gc-end: 10}@media(min-width: 500px){.u-gc-8\\/10\\@from-tiny{--gc-start: 8;--gc-end: 10}}@media(max-width: 499px){.u-gc-8\\/10\\@to-tiny{--gc-start: 8;--gc-end: 10}}.u-gc-8\\/11{--gc-start: 8;--gc-end: 11}@media(min-width: 500px){.u-gc-8\\/11\\@from-tiny{--gc-start: 8;--gc-end: 11}}@media(max-width: 499px){.u-gc-8\\/11\\@to-tiny{--gc-start: 8;--gc-end: 11}}.u-gc-8\\/12{--gc-start: 8;--gc-end: 12}@media(min-width: 500px){.u-gc-8\\/12\\@from-tiny{--gc-start: 8;--gc-end: 12}}@media(max-width: 499px){.u-gc-8\\/12\\@to-tiny{--gc-start: 8;--gc-end: 12}}.u-gc-8\\/13{--gc-start: 8;--gc-end: 13}@media(min-width: 500px){.u-gc-8\\/13\\@from-tiny{--gc-start: 8;--gc-end: 13}}@media(max-width: 499px){.u-gc-8\\/13\\@to-tiny{--gc-start: 8;--gc-end: 13}}.u-gc-9\\/1{--gc-start: 9;--gc-end: 1}@media(min-width: 500px){.u-gc-9\\/1\\@from-tiny{--gc-start: 9;--gc-end: 1}}@media(max-width: 499px){.u-gc-9\\/1\\@to-tiny{--gc-start: 9;--gc-end: 1}}.u-gc-9\\/2{--gc-start: 9;--gc-end: 2}@media(min-width: 500px){.u-gc-9\\/2\\@from-tiny{--gc-start: 9;--gc-end: 2}}@media(max-width: 499px){.u-gc-9\\/2\\@to-tiny{--gc-start: 9;--gc-end: 2}}.u-gc-9\\/3{--gc-start: 9;--gc-end: 3}@media(min-width: 500px){.u-gc-9\\/3\\@from-tiny{--gc-start: 9;--gc-end: 3}}@media(max-width: 499px){.u-gc-9\\/3\\@to-tiny{--gc-start: 9;--gc-end: 3}}.u-gc-9\\/4{--gc-start: 9;--gc-end: 4}@media(min-width: 500px){.u-gc-9\\/4\\@from-tiny{--gc-start: 9;--gc-end: 4}}@media(max-width: 499px){.u-gc-9\\/4\\@to-tiny{--gc-start: 9;--gc-end: 4}}.u-gc-9\\/5{--gc-start: 9;--gc-end: 5}@media(min-width: 500px){.u-gc-9\\/5\\@from-tiny{--gc-start: 9;--gc-end: 5}}@media(max-width: 499px){.u-gc-9\\/5\\@to-tiny{--gc-start: 9;--gc-end: 5}}.u-gc-9\\/6{--gc-start: 9;--gc-end: 6}@media(min-width: 500px){.u-gc-9\\/6\\@from-tiny{--gc-start: 9;--gc-end: 6}}@media(max-width: 499px){.u-gc-9\\/6\\@to-tiny{--gc-start: 9;--gc-end: 6}}.u-gc-9\\/7{--gc-start: 9;--gc-end: 7}@media(min-width: 500px){.u-gc-9\\/7\\@from-tiny{--gc-start: 9;--gc-end: 7}}@media(max-width: 499px){.u-gc-9\\/7\\@to-tiny{--gc-start: 9;--gc-end: 7}}.u-gc-9\\/8{--gc-start: 9;--gc-end: 8}@media(min-width: 500px){.u-gc-9\\/8\\@from-tiny{--gc-start: 9;--gc-end: 8}}@media(max-width: 499px){.u-gc-9\\/8\\@to-tiny{--gc-start: 9;--gc-end: 8}}.u-gc-9\\/9{--gc-start: 9;--gc-end: 9}@media(min-width: 500px){.u-gc-9\\/9\\@from-tiny{--gc-start: 9;--gc-end: 9}}@media(max-width: 499px){.u-gc-9\\/9\\@to-tiny{--gc-start: 9;--gc-end: 9}}.u-gc-9\\/10{--gc-start: 9;--gc-end: 10}@media(min-width: 500px){.u-gc-9\\/10\\@from-tiny{--gc-start: 9;--gc-end: 10}}@media(max-width: 499px){.u-gc-9\\/10\\@to-tiny{--gc-start: 9;--gc-end: 10}}.u-gc-9\\/11{--gc-start: 9;--gc-end: 11}@media(min-width: 500px){.u-gc-9\\/11\\@from-tiny{--gc-start: 9;--gc-end: 11}}@media(max-width: 499px){.u-gc-9\\/11\\@to-tiny{--gc-start: 9;--gc-end: 11}}.u-gc-9\\/12{--gc-start: 9;--gc-end: 12}@media(min-width: 500px){.u-gc-9\\/12\\@from-tiny{--gc-start: 9;--gc-end: 12}}@media(max-width: 499px){.u-gc-9\\/12\\@to-tiny{--gc-start: 9;--gc-end: 12}}.u-gc-9\\/13{--gc-start: 9;--gc-end: 13}@media(min-width: 500px){.u-gc-9\\/13\\@from-tiny{--gc-start: 9;--gc-end: 13}}@media(max-width: 499px){.u-gc-9\\/13\\@to-tiny{--gc-start: 9;--gc-end: 13}}.u-gc-10\\/1{--gc-start: 10;--gc-end: 1}@media(min-width: 500px){.u-gc-10\\/1\\@from-tiny{--gc-start: 10;--gc-end: 1}}@media(max-width: 499px){.u-gc-10\\/1\\@to-tiny{--gc-start: 10;--gc-end: 1}}.u-gc-10\\/2{--gc-start: 10;--gc-end: 2}@media(min-width: 500px){.u-gc-10\\/2\\@from-tiny{--gc-start: 10;--gc-end: 2}}@media(max-width: 499px){.u-gc-10\\/2\\@to-tiny{--gc-start: 10;--gc-end: 2}}.u-gc-10\\/3{--gc-start: 10;--gc-end: 3}@media(min-width: 500px){.u-gc-10\\/3\\@from-tiny{--gc-start: 10;--gc-end: 3}}@media(max-width: 499px){.u-gc-10\\/3\\@to-tiny{--gc-start: 10;--gc-end: 3}}.u-gc-10\\/4{--gc-start: 10;--gc-end: 4}@media(min-width: 500px){.u-gc-10\\/4\\@from-tiny{--gc-start: 10;--gc-end: 4}}@media(max-width: 499px){.u-gc-10\\/4\\@to-tiny{--gc-start: 10;--gc-end: 4}}.u-gc-10\\/5{--gc-start: 10;--gc-end: 5}@media(min-width: 500px){.u-gc-10\\/5\\@from-tiny{--gc-start: 10;--gc-end: 5}}@media(max-width: 499px){.u-gc-10\\/5\\@to-tiny{--gc-start: 10;--gc-end: 5}}.u-gc-10\\/6{--gc-start: 10;--gc-end: 6}@media(min-width: 500px){.u-gc-10\\/6\\@from-tiny{--gc-start: 10;--gc-end: 6}}@media(max-width: 499px){.u-gc-10\\/6\\@to-tiny{--gc-start: 10;--gc-end: 6}}.u-gc-10\\/7{--gc-start: 10;--gc-end: 7}@media(min-width: 500px){.u-gc-10\\/7\\@from-tiny{--gc-start: 10;--gc-end: 7}}@media(max-width: 499px){.u-gc-10\\/7\\@to-tiny{--gc-start: 10;--gc-end: 7}}.u-gc-10\\/8{--gc-start: 10;--gc-end: 8}@media(min-width: 500px){.u-gc-10\\/8\\@from-tiny{--gc-start: 10;--gc-end: 8}}@media(max-width: 499px){.u-gc-10\\/8\\@to-tiny{--gc-start: 10;--gc-end: 8}}.u-gc-10\\/9{--gc-start: 10;--gc-end: 9}@media(min-width: 500px){.u-gc-10\\/9\\@from-tiny{--gc-start: 10;--gc-end: 9}}@media(max-width: 499px){.u-gc-10\\/9\\@to-tiny{--gc-start: 10;--gc-end: 9}}.u-gc-10\\/10{--gc-start: 10;--gc-end: 10}@media(min-width: 500px){.u-gc-10\\/10\\@from-tiny{--gc-start: 10;--gc-end: 10}}@media(max-width: 499px){.u-gc-10\\/10\\@to-tiny{--gc-start: 10;--gc-end: 10}}.u-gc-10\\/11{--gc-start: 10;--gc-end: 11}@media(min-width: 500px){.u-gc-10\\/11\\@from-tiny{--gc-start: 10;--gc-end: 11}}@media(max-width: 499px){.u-gc-10\\/11\\@to-tiny{--gc-start: 10;--gc-end: 11}}.u-gc-10\\/12{--gc-start: 10;--gc-end: 12}@media(min-width: 500px){.u-gc-10\\/12\\@from-tiny{--gc-start: 10;--gc-end: 12}}@media(max-width: 499px){.u-gc-10\\/12\\@to-tiny{--gc-start: 10;--gc-end: 12}}.u-gc-10\\/13{--gc-start: 10;--gc-end: 13}@media(min-width: 500px){.u-gc-10\\/13\\@from-tiny{--gc-start: 10;--gc-end: 13}}@media(max-width: 499px){.u-gc-10\\/13\\@to-tiny{--gc-start: 10;--gc-end: 13}}.u-gc-11\\/1{--gc-start: 11;--gc-end: 1}@media(min-width: 500px){.u-gc-11\\/1\\@from-tiny{--gc-start: 11;--gc-end: 1}}@media(max-width: 499px){.u-gc-11\\/1\\@to-tiny{--gc-start: 11;--gc-end: 1}}.u-gc-11\\/2{--gc-start: 11;--gc-end: 2}@media(min-width: 500px){.u-gc-11\\/2\\@from-tiny{--gc-start: 11;--gc-end: 2}}@media(max-width: 499px){.u-gc-11\\/2\\@to-tiny{--gc-start: 11;--gc-end: 2}}.u-gc-11\\/3{--gc-start: 11;--gc-end: 3}@media(min-width: 500px){.u-gc-11\\/3\\@from-tiny{--gc-start: 11;--gc-end: 3}}@media(max-width: 499px){.u-gc-11\\/3\\@to-tiny{--gc-start: 11;--gc-end: 3}}.u-gc-11\\/4{--gc-start: 11;--gc-end: 4}@media(min-width: 500px){.u-gc-11\\/4\\@from-tiny{--gc-start: 11;--gc-end: 4}}@media(max-width: 499px){.u-gc-11\\/4\\@to-tiny{--gc-start: 11;--gc-end: 4}}.u-gc-11\\/5{--gc-start: 11;--gc-end: 5}@media(min-width: 500px){.u-gc-11\\/5\\@from-tiny{--gc-start: 11;--gc-end: 5}}@media(max-width: 499px){.u-gc-11\\/5\\@to-tiny{--gc-start: 11;--gc-end: 5}}.u-gc-11\\/6{--gc-start: 11;--gc-end: 6}@media(min-width: 500px){.u-gc-11\\/6\\@from-tiny{--gc-start: 11;--gc-end: 6}}@media(max-width: 499px){.u-gc-11\\/6\\@to-tiny{--gc-start: 11;--gc-end: 6}}.u-gc-11\\/7{--gc-start: 11;--gc-end: 7}@media(min-width: 500px){.u-gc-11\\/7\\@from-tiny{--gc-start: 11;--gc-end: 7}}@media(max-width: 499px){.u-gc-11\\/7\\@to-tiny{--gc-start: 11;--gc-end: 7}}.u-gc-11\\/8{--gc-start: 11;--gc-end: 8}@media(min-width: 500px){.u-gc-11\\/8\\@from-tiny{--gc-start: 11;--gc-end: 8}}@media(max-width: 499px){.u-gc-11\\/8\\@to-tiny{--gc-start: 11;--gc-end: 8}}.u-gc-11\\/9{--gc-start: 11;--gc-end: 9}@media(min-width: 500px){.u-gc-11\\/9\\@from-tiny{--gc-start: 11;--gc-end: 9}}@media(max-width: 499px){.u-gc-11\\/9\\@to-tiny{--gc-start: 11;--gc-end: 9}}.u-gc-11\\/10{--gc-start: 11;--gc-end: 10}@media(min-width: 500px){.u-gc-11\\/10\\@from-tiny{--gc-start: 11;--gc-end: 10}}@media(max-width: 499px){.u-gc-11\\/10\\@to-tiny{--gc-start: 11;--gc-end: 10}}.u-gc-11\\/11{--gc-start: 11;--gc-end: 11}@media(min-width: 500px){.u-gc-11\\/11\\@from-tiny{--gc-start: 11;--gc-end: 11}}@media(max-width: 499px){.u-gc-11\\/11\\@to-tiny{--gc-start: 11;--gc-end: 11}}.u-gc-11\\/12{--gc-start: 11;--gc-end: 12}@media(min-width: 500px){.u-gc-11\\/12\\@from-tiny{--gc-start: 11;--gc-end: 12}}@media(max-width: 499px){.u-gc-11\\/12\\@to-tiny{--gc-start: 11;--gc-end: 12}}.u-gc-11\\/13{--gc-start: 11;--gc-end: 13}@media(min-width: 500px){.u-gc-11\\/13\\@from-tiny{--gc-start: 11;--gc-end: 13}}@media(max-width: 499px){.u-gc-11\\/13\\@to-tiny{--gc-start: 11;--gc-end: 13}}.u-gc-12\\/1{--gc-start: 12;--gc-end: 1}@media(min-width: 500px){.u-gc-12\\/1\\@from-tiny{--gc-start: 12;--gc-end: 1}}@media(max-width: 499px){.u-gc-12\\/1\\@to-tiny{--gc-start: 12;--gc-end: 1}}.u-gc-12\\/2{--gc-start: 12;--gc-end: 2}@media(min-width: 500px){.u-gc-12\\/2\\@from-tiny{--gc-start: 12;--gc-end: 2}}@media(max-width: 499px){.u-gc-12\\/2\\@to-tiny{--gc-start: 12;--gc-end: 2}}.u-gc-12\\/3{--gc-start: 12;--gc-end: 3}@media(min-width: 500px){.u-gc-12\\/3\\@from-tiny{--gc-start: 12;--gc-end: 3}}@media(max-width: 499px){.u-gc-12\\/3\\@to-tiny{--gc-start: 12;--gc-end: 3}}.u-gc-12\\/4{--gc-start: 12;--gc-end: 4}@media(min-width: 500px){.u-gc-12\\/4\\@from-tiny{--gc-start: 12;--gc-end: 4}}@media(max-width: 499px){.u-gc-12\\/4\\@to-tiny{--gc-start: 12;--gc-end: 4}}.u-gc-12\\/5{--gc-start: 12;--gc-end: 5}@media(min-width: 500px){.u-gc-12\\/5\\@from-tiny{--gc-start: 12;--gc-end: 5}}@media(max-width: 499px){.u-gc-12\\/5\\@to-tiny{--gc-start: 12;--gc-end: 5}}.u-gc-12\\/6{--gc-start: 12;--gc-end: 6}@media(min-width: 500px){.u-gc-12\\/6\\@from-tiny{--gc-start: 12;--gc-end: 6}}@media(max-width: 499px){.u-gc-12\\/6\\@to-tiny{--gc-start: 12;--gc-end: 6}}.u-gc-12\\/7{--gc-start: 12;--gc-end: 7}@media(min-width: 500px){.u-gc-12\\/7\\@from-tiny{--gc-start: 12;--gc-end: 7}}@media(max-width: 499px){.u-gc-12\\/7\\@to-tiny{--gc-start: 12;--gc-end: 7}}.u-gc-12\\/8{--gc-start: 12;--gc-end: 8}@media(min-width: 500px){.u-gc-12\\/8\\@from-tiny{--gc-start: 12;--gc-end: 8}}@media(max-width: 499px){.u-gc-12\\/8\\@to-tiny{--gc-start: 12;--gc-end: 8}}.u-gc-12\\/9{--gc-start: 12;--gc-end: 9}@media(min-width: 500px){.u-gc-12\\/9\\@from-tiny{--gc-start: 12;--gc-end: 9}}@media(max-width: 499px){.u-gc-12\\/9\\@to-tiny{--gc-start: 12;--gc-end: 9}}.u-gc-12\\/10{--gc-start: 12;--gc-end: 10}@media(min-width: 500px){.u-gc-12\\/10\\@from-tiny{--gc-start: 12;--gc-end: 10}}@media(max-width: 499px){.u-gc-12\\/10\\@to-tiny{--gc-start: 12;--gc-end: 10}}.u-gc-12\\/11{--gc-start: 12;--gc-end: 11}@media(min-width: 500px){.u-gc-12\\/11\\@from-tiny{--gc-start: 12;--gc-end: 11}}@media(max-width: 499px){.u-gc-12\\/11\\@to-tiny{--gc-start: 12;--gc-end: 11}}.u-gc-12\\/12{--gc-start: 12;--gc-end: 12}@media(min-width: 500px){.u-gc-12\\/12\\@from-tiny{--gc-start: 12;--gc-end: 12}}@media(max-width: 499px){.u-gc-12\\/12\\@to-tiny{--gc-start: 12;--gc-end: 12}}.u-gc-12\\/13{--gc-start: 12;--gc-end: 13}@media(min-width: 500px){.u-gc-12\\/13\\@from-tiny{--gc-start: 12;--gc-end: 13}}@media(max-width: 499px){.u-gc-12\\/13\\@to-tiny{--gc-start: 12;--gc-end: 13}}.u-gc-13\\/1{--gc-start: 13;--gc-end: 1}@media(min-width: 500px){.u-gc-13\\/1\\@from-tiny{--gc-start: 13;--gc-end: 1}}@media(max-width: 499px){.u-gc-13\\/1\\@to-tiny{--gc-start: 13;--gc-end: 1}}.u-gc-13\\/2{--gc-start: 13;--gc-end: 2}@media(min-width: 500px){.u-gc-13\\/2\\@from-tiny{--gc-start: 13;--gc-end: 2}}@media(max-width: 499px){.u-gc-13\\/2\\@to-tiny{--gc-start: 13;--gc-end: 2}}.u-gc-13\\/3{--gc-start: 13;--gc-end: 3}@media(min-width: 500px){.u-gc-13\\/3\\@from-tiny{--gc-start: 13;--gc-end: 3}}@media(max-width: 499px){.u-gc-13\\/3\\@to-tiny{--gc-start: 13;--gc-end: 3}}.u-gc-13\\/4{--gc-start: 13;--gc-end: 4}@media(min-width: 500px){.u-gc-13\\/4\\@from-tiny{--gc-start: 13;--gc-end: 4}}@media(max-width: 499px){.u-gc-13\\/4\\@to-tiny{--gc-start: 13;--gc-end: 4}}.u-gc-13\\/5{--gc-start: 13;--gc-end: 5}@media(min-width: 500px){.u-gc-13\\/5\\@from-tiny{--gc-start: 13;--gc-end: 5}}@media(max-width: 499px){.u-gc-13\\/5\\@to-tiny{--gc-start: 13;--gc-end: 5}}.u-gc-13\\/6{--gc-start: 13;--gc-end: 6}@media(min-width: 500px){.u-gc-13\\/6\\@from-tiny{--gc-start: 13;--gc-end: 6}}@media(max-width: 499px){.u-gc-13\\/6\\@to-tiny{--gc-start: 13;--gc-end: 6}}.u-gc-13\\/7{--gc-start: 13;--gc-end: 7}@media(min-width: 500px){.u-gc-13\\/7\\@from-tiny{--gc-start: 13;--gc-end: 7}}@media(max-width: 499px){.u-gc-13\\/7\\@to-tiny{--gc-start: 13;--gc-end: 7}}.u-gc-13\\/8{--gc-start: 13;--gc-end: 8}@media(min-width: 500px){.u-gc-13\\/8\\@from-tiny{--gc-start: 13;--gc-end: 8}}@media(max-width: 499px){.u-gc-13\\/8\\@to-tiny{--gc-start: 13;--gc-end: 8}}.u-gc-13\\/9{--gc-start: 13;--gc-end: 9}@media(min-width: 500px){.u-gc-13\\/9\\@from-tiny{--gc-start: 13;--gc-end: 9}}@media(max-width: 499px){.u-gc-13\\/9\\@to-tiny{--gc-start: 13;--gc-end: 9}}.u-gc-13\\/10{--gc-start: 13;--gc-end: 10}@media(min-width: 500px){.u-gc-13\\/10\\@from-tiny{--gc-start: 13;--gc-end: 10}}@media(max-width: 499px){.u-gc-13\\/10\\@to-tiny{--gc-start: 13;--gc-end: 10}}.u-gc-13\\/11{--gc-start: 13;--gc-end: 11}@media(min-width: 500px){.u-gc-13\\/11\\@from-tiny{--gc-start: 13;--gc-end: 11}}@media(max-width: 499px){.u-gc-13\\/11\\@to-tiny{--gc-start: 13;--gc-end: 11}}.u-gc-13\\/12{--gc-start: 13;--gc-end: 12}@media(min-width: 500px){.u-gc-13\\/12\\@from-tiny{--gc-start: 13;--gc-end: 12}}@media(max-width: 499px){.u-gc-13\\/12\\@to-tiny{--gc-start: 13;--gc-end: 12}}.u-gc-13\\/13{--gc-start: 13;--gc-end: 13}@media(min-width: 500px){.u-gc-13\\/13\\@from-tiny{--gc-start: 13;--gc-end: 13}}@media(max-width: 499px){.u-gc-13\\/13\\@to-tiny{--gc-start: 13;--gc-end: 13}}@media(min-width: 700px){.u-gc-1\\/1\\@from-small{--gc-start: 1;--gc-end: 1}}@media(max-width: 699px){.u-gc-1\\/1\\@to-small{--gc-start: 1;--gc-end: 1}}@media(min-width: 700px){.u-gc-1\\/2\\@from-small{--gc-start: 1;--gc-end: 2}}@media(max-width: 699px){.u-gc-1\\/2\\@to-small{--gc-start: 1;--gc-end: 2}}@media(min-width: 700px){.u-gc-1\\/3\\@from-small{--gc-start: 1;--gc-end: 3}}@media(max-width: 699px){.u-gc-1\\/3\\@to-small{--gc-start: 1;--gc-end: 3}}@media(min-width: 700px){.u-gc-1\\/4\\@from-small{--gc-start: 1;--gc-end: 4}}@media(max-width: 699px){.u-gc-1\\/4\\@to-small{--gc-start: 1;--gc-end: 4}}@media(min-width: 700px){.u-gc-1\\/5\\@from-small{--gc-start: 1;--gc-end: 5}}@media(max-width: 699px){.u-gc-1\\/5\\@to-small{--gc-start: 1;--gc-end: 5}}@media(min-width: 700px){.u-gc-1\\/6\\@from-small{--gc-start: 1;--gc-end: 6}}@media(max-width: 699px){.u-gc-1\\/6\\@to-small{--gc-start: 1;--gc-end: 6}}@media(min-width: 700px){.u-gc-1\\/7\\@from-small{--gc-start: 1;--gc-end: 7}}@media(max-width: 699px){.u-gc-1\\/7\\@to-small{--gc-start: 1;--gc-end: 7}}@media(min-width: 700px){.u-gc-1\\/8\\@from-small{--gc-start: 1;--gc-end: 8}}@media(max-width: 699px){.u-gc-1\\/8\\@to-small{--gc-start: 1;--gc-end: 8}}@media(min-width: 700px){.u-gc-1\\/9\\@from-small{--gc-start: 1;--gc-end: 9}}@media(max-width: 699px){.u-gc-1\\/9\\@to-small{--gc-start: 1;--gc-end: 9}}@media(min-width: 700px){.u-gc-1\\/10\\@from-small{--gc-start: 1;--gc-end: 10}}@media(max-width: 699px){.u-gc-1\\/10\\@to-small{--gc-start: 1;--gc-end: 10}}@media(min-width: 700px){.u-gc-1\\/11\\@from-small{--gc-start: 1;--gc-end: 11}}@media(max-width: 699px){.u-gc-1\\/11\\@to-small{--gc-start: 1;--gc-end: 11}}@media(min-width: 700px){.u-gc-1\\/12\\@from-small{--gc-start: 1;--gc-end: 12}}@media(max-width: 699px){.u-gc-1\\/12\\@to-small{--gc-start: 1;--gc-end: 12}}@media(min-width: 700px){.u-gc-1\\/13\\@from-small{--gc-start: 1;--gc-end: 13}}@media(max-width: 699px){.u-gc-1\\/13\\@to-small{--gc-start: 1;--gc-end: 13}}@media(min-width: 700px){.u-gc-2\\/1\\@from-small{--gc-start: 2;--gc-end: 1}}@media(max-width: 699px){.u-gc-2\\/1\\@to-small{--gc-start: 2;--gc-end: 1}}@media(min-width: 700px){.u-gc-2\\/2\\@from-small{--gc-start: 2;--gc-end: 2}}@media(max-width: 699px){.u-gc-2\\/2\\@to-small{--gc-start: 2;--gc-end: 2}}@media(min-width: 700px){.u-gc-2\\/3\\@from-small{--gc-start: 2;--gc-end: 3}}@media(max-width: 699px){.u-gc-2\\/3\\@to-small{--gc-start: 2;--gc-end: 3}}@media(min-width: 700px){.u-gc-2\\/4\\@from-small{--gc-start: 2;--gc-end: 4}}@media(max-width: 699px){.u-gc-2\\/4\\@to-small{--gc-start: 2;--gc-end: 4}}@media(min-width: 700px){.u-gc-2\\/5\\@from-small{--gc-start: 2;--gc-end: 5}}@media(max-width: 699px){.u-gc-2\\/5\\@to-small{--gc-start: 2;--gc-end: 5}}@media(min-width: 700px){.u-gc-2\\/6\\@from-small{--gc-start: 2;--gc-end: 6}}@media(max-width: 699px){.u-gc-2\\/6\\@to-small{--gc-start: 2;--gc-end: 6}}@media(min-width: 700px){.u-gc-2\\/7\\@from-small{--gc-start: 2;--gc-end: 7}}@media(max-width: 699px){.u-gc-2\\/7\\@to-small{--gc-start: 2;--gc-end: 7}}@media(min-width: 700px){.u-gc-2\\/8\\@from-small{--gc-start: 2;--gc-end: 8}}@media(max-width: 699px){.u-gc-2\\/8\\@to-small{--gc-start: 2;--gc-end: 8}}@media(min-width: 700px){.u-gc-2\\/9\\@from-small{--gc-start: 2;--gc-end: 9}}@media(max-width: 699px){.u-gc-2\\/9\\@to-small{--gc-start: 2;--gc-end: 9}}@media(min-width: 700px){.u-gc-2\\/10\\@from-small{--gc-start: 2;--gc-end: 10}}@media(max-width: 699px){.u-gc-2\\/10\\@to-small{--gc-start: 2;--gc-end: 10}}@media(min-width: 700px){.u-gc-2\\/11\\@from-small{--gc-start: 2;--gc-end: 11}}@media(max-width: 699px){.u-gc-2\\/11\\@to-small{--gc-start: 2;--gc-end: 11}}@media(min-width: 700px){.u-gc-2\\/12\\@from-small{--gc-start: 2;--gc-end: 12}}@media(max-width: 699px){.u-gc-2\\/12\\@to-small{--gc-start: 2;--gc-end: 12}}@media(min-width: 700px){.u-gc-2\\/13\\@from-small{--gc-start: 2;--gc-end: 13}}@media(max-width: 699px){.u-gc-2\\/13\\@to-small{--gc-start: 2;--gc-end: 13}}@media(min-width: 700px){.u-gc-3\\/1\\@from-small{--gc-start: 3;--gc-end: 1}}@media(max-width: 699px){.u-gc-3\\/1\\@to-small{--gc-start: 3;--gc-end: 1}}@media(min-width: 700px){.u-gc-3\\/2\\@from-small{--gc-start: 3;--gc-end: 2}}@media(max-width: 699px){.u-gc-3\\/2\\@to-small{--gc-start: 3;--gc-end: 2}}@media(min-width: 700px){.u-gc-3\\/3\\@from-small{--gc-start: 3;--gc-end: 3}}@media(max-width: 699px){.u-gc-3\\/3\\@to-small{--gc-start: 3;--gc-end: 3}}@media(min-width: 700px){.u-gc-3\\/4\\@from-small{--gc-start: 3;--gc-end: 4}}@media(max-width: 699px){.u-gc-3\\/4\\@to-small{--gc-start: 3;--gc-end: 4}}@media(min-width: 700px){.u-gc-3\\/5\\@from-small{--gc-start: 3;--gc-end: 5}}@media(max-width: 699px){.u-gc-3\\/5\\@to-small{--gc-start: 3;--gc-end: 5}}@media(min-width: 700px){.u-gc-3\\/6\\@from-small{--gc-start: 3;--gc-end: 6}}@media(max-width: 699px){.u-gc-3\\/6\\@to-small{--gc-start: 3;--gc-end: 6}}@media(min-width: 700px){.u-gc-3\\/7\\@from-small{--gc-start: 3;--gc-end: 7}}@media(max-width: 699px){.u-gc-3\\/7\\@to-small{--gc-start: 3;--gc-end: 7}}@media(min-width: 700px){.u-gc-3\\/8\\@from-small{--gc-start: 3;--gc-end: 8}}@media(max-width: 699px){.u-gc-3\\/8\\@to-small{--gc-start: 3;--gc-end: 8}}@media(min-width: 700px){.u-gc-3\\/9\\@from-small{--gc-start: 3;--gc-end: 9}}@media(max-width: 699px){.u-gc-3\\/9\\@to-small{--gc-start: 3;--gc-end: 9}}@media(min-width: 700px){.u-gc-3\\/10\\@from-small{--gc-start: 3;--gc-end: 10}}@media(max-width: 699px){.u-gc-3\\/10\\@to-small{--gc-start: 3;--gc-end: 10}}@media(min-width: 700px){.u-gc-3\\/11\\@from-small{--gc-start: 3;--gc-end: 11}}@media(max-width: 699px){.u-gc-3\\/11\\@to-small{--gc-start: 3;--gc-end: 11}}@media(min-width: 700px){.u-gc-3\\/12\\@from-small{--gc-start: 3;--gc-end: 12}}@media(max-width: 699px){.u-gc-3\\/12\\@to-small{--gc-start: 3;--gc-end: 12}}@media(min-width: 700px){.u-gc-3\\/13\\@from-small{--gc-start: 3;--gc-end: 13}}@media(max-width: 699px){.u-gc-3\\/13\\@to-small{--gc-start: 3;--gc-end: 13}}@media(min-width: 700px){.u-gc-4\\/1\\@from-small{--gc-start: 4;--gc-end: 1}}@media(max-width: 699px){.u-gc-4\\/1\\@to-small{--gc-start: 4;--gc-end: 1}}@media(min-width: 700px){.u-gc-4\\/2\\@from-small{--gc-start: 4;--gc-end: 2}}@media(max-width: 699px){.u-gc-4\\/2\\@to-small{--gc-start: 4;--gc-end: 2}}@media(min-width: 700px){.u-gc-4\\/3\\@from-small{--gc-start: 4;--gc-end: 3}}@media(max-width: 699px){.u-gc-4\\/3\\@to-small{--gc-start: 4;--gc-end: 3}}@media(min-width: 700px){.u-gc-4\\/4\\@from-small{--gc-start: 4;--gc-end: 4}}@media(max-width: 699px){.u-gc-4\\/4\\@to-small{--gc-start: 4;--gc-end: 4}}@media(min-width: 700px){.u-gc-4\\/5\\@from-small{--gc-start: 4;--gc-end: 5}}@media(max-width: 699px){.u-gc-4\\/5\\@to-small{--gc-start: 4;--gc-end: 5}}@media(min-width: 700px){.u-gc-4\\/6\\@from-small{--gc-start: 4;--gc-end: 6}}@media(max-width: 699px){.u-gc-4\\/6\\@to-small{--gc-start: 4;--gc-end: 6}}@media(min-width: 700px){.u-gc-4\\/7\\@from-small{--gc-start: 4;--gc-end: 7}}@media(max-width: 699px){.u-gc-4\\/7\\@to-small{--gc-start: 4;--gc-end: 7}}@media(min-width: 700px){.u-gc-4\\/8\\@from-small{--gc-start: 4;--gc-end: 8}}@media(max-width: 699px){.u-gc-4\\/8\\@to-small{--gc-start: 4;--gc-end: 8}}@media(min-width: 700px){.u-gc-4\\/9\\@from-small{--gc-start: 4;--gc-end: 9}}@media(max-width: 699px){.u-gc-4\\/9\\@to-small{--gc-start: 4;--gc-end: 9}}@media(min-width: 700px){.u-gc-4\\/10\\@from-small{--gc-start: 4;--gc-end: 10}}@media(max-width: 699px){.u-gc-4\\/10\\@to-small{--gc-start: 4;--gc-end: 10}}@media(min-width: 700px){.u-gc-4\\/11\\@from-small{--gc-start: 4;--gc-end: 11}}@media(max-width: 699px){.u-gc-4\\/11\\@to-small{--gc-start: 4;--gc-end: 11}}@media(min-width: 700px){.u-gc-4\\/12\\@from-small{--gc-start: 4;--gc-end: 12}}@media(max-width: 699px){.u-gc-4\\/12\\@to-small{--gc-start: 4;--gc-end: 12}}@media(min-width: 700px){.u-gc-4\\/13\\@from-small{--gc-start: 4;--gc-end: 13}}@media(max-width: 699px){.u-gc-4\\/13\\@to-small{--gc-start: 4;--gc-end: 13}}@media(min-width: 700px){.u-gc-5\\/1\\@from-small{--gc-start: 5;--gc-end: 1}}@media(max-width: 699px){.u-gc-5\\/1\\@to-small{--gc-start: 5;--gc-end: 1}}@media(min-width: 700px){.u-gc-5\\/2\\@from-small{--gc-start: 5;--gc-end: 2}}@media(max-width: 699px){.u-gc-5\\/2\\@to-small{--gc-start: 5;--gc-end: 2}}@media(min-width: 700px){.u-gc-5\\/3\\@from-small{--gc-start: 5;--gc-end: 3}}@media(max-width: 699px){.u-gc-5\\/3\\@to-small{--gc-start: 5;--gc-end: 3}}@media(min-width: 700px){.u-gc-5\\/4\\@from-small{--gc-start: 5;--gc-end: 4}}@media(max-width: 699px){.u-gc-5\\/4\\@to-small{--gc-start: 5;--gc-end: 4}}@media(min-width: 700px){.u-gc-5\\/5\\@from-small{--gc-start: 5;--gc-end: 5}}@media(max-width: 699px){.u-gc-5\\/5\\@to-small{--gc-start: 5;--gc-end: 5}}@media(min-width: 700px){.u-gc-5\\/6\\@from-small{--gc-start: 5;--gc-end: 6}}@media(max-width: 699px){.u-gc-5\\/6\\@to-small{--gc-start: 5;--gc-end: 6}}@media(min-width: 700px){.u-gc-5\\/7\\@from-small{--gc-start: 5;--gc-end: 7}}@media(max-width: 699px){.u-gc-5\\/7\\@to-small{--gc-start: 5;--gc-end: 7}}@media(min-width: 700px){.u-gc-5\\/8\\@from-small{--gc-start: 5;--gc-end: 8}}@media(max-width: 699px){.u-gc-5\\/8\\@to-small{--gc-start: 5;--gc-end: 8}}@media(min-width: 700px){.u-gc-5\\/9\\@from-small{--gc-start: 5;--gc-end: 9}}@media(max-width: 699px){.u-gc-5\\/9\\@to-small{--gc-start: 5;--gc-end: 9}}@media(min-width: 700px){.u-gc-5\\/10\\@from-small{--gc-start: 5;--gc-end: 10}}@media(max-width: 699px){.u-gc-5\\/10\\@to-small{--gc-start: 5;--gc-end: 10}}@media(min-width: 700px){.u-gc-5\\/11\\@from-small{--gc-start: 5;--gc-end: 11}}@media(max-width: 699px){.u-gc-5\\/11\\@to-small{--gc-start: 5;--gc-end: 11}}@media(min-width: 700px){.u-gc-5\\/12\\@from-small{--gc-start: 5;--gc-end: 12}}@media(max-width: 699px){.u-gc-5\\/12\\@to-small{--gc-start: 5;--gc-end: 12}}@media(min-width: 700px){.u-gc-5\\/13\\@from-small{--gc-start: 5;--gc-end: 13}}@media(max-width: 699px){.u-gc-5\\/13\\@to-small{--gc-start: 5;--gc-end: 13}}@media(min-width: 700px){.u-gc-6\\/1\\@from-small{--gc-start: 6;--gc-end: 1}}@media(max-width: 699px){.u-gc-6\\/1\\@to-small{--gc-start: 6;--gc-end: 1}}@media(min-width: 700px){.u-gc-6\\/2\\@from-small{--gc-start: 6;--gc-end: 2}}@media(max-width: 699px){.u-gc-6\\/2\\@to-small{--gc-start: 6;--gc-end: 2}}@media(min-width: 700px){.u-gc-6\\/3\\@from-small{--gc-start: 6;--gc-end: 3}}@media(max-width: 699px){.u-gc-6\\/3\\@to-small{--gc-start: 6;--gc-end: 3}}@media(min-width: 700px){.u-gc-6\\/4\\@from-small{--gc-start: 6;--gc-end: 4}}@media(max-width: 699px){.u-gc-6\\/4\\@to-small{--gc-start: 6;--gc-end: 4}}@media(min-width: 700px){.u-gc-6\\/5\\@from-small{--gc-start: 6;--gc-end: 5}}@media(max-width: 699px){.u-gc-6\\/5\\@to-small{--gc-start: 6;--gc-end: 5}}@media(min-width: 700px){.u-gc-6\\/6\\@from-small{--gc-start: 6;--gc-end: 6}}@media(max-width: 699px){.u-gc-6\\/6\\@to-small{--gc-start: 6;--gc-end: 6}}@media(min-width: 700px){.u-gc-6\\/7\\@from-small{--gc-start: 6;--gc-end: 7}}@media(max-width: 699px){.u-gc-6\\/7\\@to-small{--gc-start: 6;--gc-end: 7}}@media(min-width: 700px){.u-gc-6\\/8\\@from-small{--gc-start: 6;--gc-end: 8}}@media(max-width: 699px){.u-gc-6\\/8\\@to-small{--gc-start: 6;--gc-end: 8}}@media(min-width: 700px){.u-gc-6\\/9\\@from-small{--gc-start: 6;--gc-end: 9}}@media(max-width: 699px){.u-gc-6\\/9\\@to-small{--gc-start: 6;--gc-end: 9}}@media(min-width: 700px){.u-gc-6\\/10\\@from-small{--gc-start: 6;--gc-end: 10}}@media(max-width: 699px){.u-gc-6\\/10\\@to-small{--gc-start: 6;--gc-end: 10}}@media(min-width: 700px){.u-gc-6\\/11\\@from-small{--gc-start: 6;--gc-end: 11}}@media(max-width: 699px){.u-gc-6\\/11\\@to-small{--gc-start: 6;--gc-end: 11}}@media(min-width: 700px){.u-gc-6\\/12\\@from-small{--gc-start: 6;--gc-end: 12}}@media(max-width: 699px){.u-gc-6\\/12\\@to-small{--gc-start: 6;--gc-end: 12}}@media(min-width: 700px){.u-gc-6\\/13\\@from-small{--gc-start: 6;--gc-end: 13}}@media(max-width: 699px){.u-gc-6\\/13\\@to-small{--gc-start: 6;--gc-end: 13}}@media(min-width: 700px){.u-gc-7\\/1\\@from-small{--gc-start: 7;--gc-end: 1}}@media(max-width: 699px){.u-gc-7\\/1\\@to-small{--gc-start: 7;--gc-end: 1}}@media(min-width: 700px){.u-gc-7\\/2\\@from-small{--gc-start: 7;--gc-end: 2}}@media(max-width: 699px){.u-gc-7\\/2\\@to-small{--gc-start: 7;--gc-end: 2}}@media(min-width: 700px){.u-gc-7\\/3\\@from-small{--gc-start: 7;--gc-end: 3}}@media(max-width: 699px){.u-gc-7\\/3\\@to-small{--gc-start: 7;--gc-end: 3}}@media(min-width: 700px){.u-gc-7\\/4\\@from-small{--gc-start: 7;--gc-end: 4}}@media(max-width: 699px){.u-gc-7\\/4\\@to-small{--gc-start: 7;--gc-end: 4}}@media(min-width: 700px){.u-gc-7\\/5\\@from-small{--gc-start: 7;--gc-end: 5}}@media(max-width: 699px){.u-gc-7\\/5\\@to-small{--gc-start: 7;--gc-end: 5}}@media(min-width: 700px){.u-gc-7\\/6\\@from-small{--gc-start: 7;--gc-end: 6}}@media(max-width: 699px){.u-gc-7\\/6\\@to-small{--gc-start: 7;--gc-end: 6}}@media(min-width: 700px){.u-gc-7\\/7\\@from-small{--gc-start: 7;--gc-end: 7}}@media(max-width: 699px){.u-gc-7\\/7\\@to-small{--gc-start: 7;--gc-end: 7}}@media(min-width: 700px){.u-gc-7\\/8\\@from-small{--gc-start: 7;--gc-end: 8}}@media(max-width: 699px){.u-gc-7\\/8\\@to-small{--gc-start: 7;--gc-end: 8}}@media(min-width: 700px){.u-gc-7\\/9\\@from-small{--gc-start: 7;--gc-end: 9}}@media(max-width: 699px){.u-gc-7\\/9\\@to-small{--gc-start: 7;--gc-end: 9}}@media(min-width: 700px){.u-gc-7\\/10\\@from-small{--gc-start: 7;--gc-end: 10}}@media(max-width: 699px){.u-gc-7\\/10\\@to-small{--gc-start: 7;--gc-end: 10}}@media(min-width: 700px){.u-gc-7\\/11\\@from-small{--gc-start: 7;--gc-end: 11}}@media(max-width: 699px){.u-gc-7\\/11\\@to-small{--gc-start: 7;--gc-end: 11}}@media(min-width: 700px){.u-gc-7\\/12\\@from-small{--gc-start: 7;--gc-end: 12}}@media(max-width: 699px){.u-gc-7\\/12\\@to-small{--gc-start: 7;--gc-end: 12}}@media(min-width: 700px){.u-gc-7\\/13\\@from-small{--gc-start: 7;--gc-end: 13}}@media(max-width: 699px){.u-gc-7\\/13\\@to-small{--gc-start: 7;--gc-end: 13}}@media(min-width: 700px){.u-gc-8\\/1\\@from-small{--gc-start: 8;--gc-end: 1}}@media(max-width: 699px){.u-gc-8\\/1\\@to-small{--gc-start: 8;--gc-end: 1}}@media(min-width: 700px){.u-gc-8\\/2\\@from-small{--gc-start: 8;--gc-end: 2}}@media(max-width: 699px){.u-gc-8\\/2\\@to-small{--gc-start: 8;--gc-end: 2}}@media(min-width: 700px){.u-gc-8\\/3\\@from-small{--gc-start: 8;--gc-end: 3}}@media(max-width: 699px){.u-gc-8\\/3\\@to-small{--gc-start: 8;--gc-end: 3}}@media(min-width: 700px){.u-gc-8\\/4\\@from-small{--gc-start: 8;--gc-end: 4}}@media(max-width: 699px){.u-gc-8\\/4\\@to-small{--gc-start: 8;--gc-end: 4}}@media(min-width: 700px){.u-gc-8\\/5\\@from-small{--gc-start: 8;--gc-end: 5}}@media(max-width: 699px){.u-gc-8\\/5\\@to-small{--gc-start: 8;--gc-end: 5}}@media(min-width: 700px){.u-gc-8\\/6\\@from-small{--gc-start: 8;--gc-end: 6}}@media(max-width: 699px){.u-gc-8\\/6\\@to-small{--gc-start: 8;--gc-end: 6}}@media(min-width: 700px){.u-gc-8\\/7\\@from-small{--gc-start: 8;--gc-end: 7}}@media(max-width: 699px){.u-gc-8\\/7\\@to-small{--gc-start: 8;--gc-end: 7}}@media(min-width: 700px){.u-gc-8\\/8\\@from-small{--gc-start: 8;--gc-end: 8}}@media(max-width: 699px){.u-gc-8\\/8\\@to-small{--gc-start: 8;--gc-end: 8}}@media(min-width: 700px){.u-gc-8\\/9\\@from-small{--gc-start: 8;--gc-end: 9}}@media(max-width: 699px){.u-gc-8\\/9\\@to-small{--gc-start: 8;--gc-end: 9}}@media(min-width: 700px){.u-gc-8\\/10\\@from-small{--gc-start: 8;--gc-end: 10}}@media(max-width: 699px){.u-gc-8\\/10\\@to-small{--gc-start: 8;--gc-end: 10}}@media(min-width: 700px){.u-gc-8\\/11\\@from-small{--gc-start: 8;--gc-end: 11}}@media(max-width: 699px){.u-gc-8\\/11\\@to-small{--gc-start: 8;--gc-end: 11}}@media(min-width: 700px){.u-gc-8\\/12\\@from-small{--gc-start: 8;--gc-end: 12}}@media(max-width: 699px){.u-gc-8\\/12\\@to-small{--gc-start: 8;--gc-end: 12}}@media(min-width: 700px){.u-gc-8\\/13\\@from-small{--gc-start: 8;--gc-end: 13}}@media(max-width: 699px){.u-gc-8\\/13\\@to-small{--gc-start: 8;--gc-end: 13}}@media(min-width: 700px){.u-gc-9\\/1\\@from-small{--gc-start: 9;--gc-end: 1}}@media(max-width: 699px){.u-gc-9\\/1\\@to-small{--gc-start: 9;--gc-end: 1}}@media(min-width: 700px){.u-gc-9\\/2\\@from-small{--gc-start: 9;--gc-end: 2}}@media(max-width: 699px){.u-gc-9\\/2\\@to-small{--gc-start: 9;--gc-end: 2}}@media(min-width: 700px){.u-gc-9\\/3\\@from-small{--gc-start: 9;--gc-end: 3}}@media(max-width: 699px){.u-gc-9\\/3\\@to-small{--gc-start: 9;--gc-end: 3}}@media(min-width: 700px){.u-gc-9\\/4\\@from-small{--gc-start: 9;--gc-end: 4}}@media(max-width: 699px){.u-gc-9\\/4\\@to-small{--gc-start: 9;--gc-end: 4}}@media(min-width: 700px){.u-gc-9\\/5\\@from-small{--gc-start: 9;--gc-end: 5}}@media(max-width: 699px){.u-gc-9\\/5\\@to-small{--gc-start: 9;--gc-end: 5}}@media(min-width: 700px){.u-gc-9\\/6\\@from-small{--gc-start: 9;--gc-end: 6}}@media(max-width: 699px){.u-gc-9\\/6\\@to-small{--gc-start: 9;--gc-end: 6}}@media(min-width: 700px){.u-gc-9\\/7\\@from-small{--gc-start: 9;--gc-end: 7}}@media(max-width: 699px){.u-gc-9\\/7\\@to-small{--gc-start: 9;--gc-end: 7}}@media(min-width: 700px){.u-gc-9\\/8\\@from-small{--gc-start: 9;--gc-end: 8}}@media(max-width: 699px){.u-gc-9\\/8\\@to-small{--gc-start: 9;--gc-end: 8}}@media(min-width: 700px){.u-gc-9\\/9\\@from-small{--gc-start: 9;--gc-end: 9}}@media(max-width: 699px){.u-gc-9\\/9\\@to-small{--gc-start: 9;--gc-end: 9}}@media(min-width: 700px){.u-gc-9\\/10\\@from-small{--gc-start: 9;--gc-end: 10}}@media(max-width: 699px){.u-gc-9\\/10\\@to-small{--gc-start: 9;--gc-end: 10}}@media(min-width: 700px){.u-gc-9\\/11\\@from-small{--gc-start: 9;--gc-end: 11}}@media(max-width: 699px){.u-gc-9\\/11\\@to-small{--gc-start: 9;--gc-end: 11}}@media(min-width: 700px){.u-gc-9\\/12\\@from-small{--gc-start: 9;--gc-end: 12}}@media(max-width: 699px){.u-gc-9\\/12\\@to-small{--gc-start: 9;--gc-end: 12}}@media(min-width: 700px){.u-gc-9\\/13\\@from-small{--gc-start: 9;--gc-end: 13}}@media(max-width: 699px){.u-gc-9\\/13\\@to-small{--gc-start: 9;--gc-end: 13}}@media(min-width: 700px){.u-gc-10\\/1\\@from-small{--gc-start: 10;--gc-end: 1}}@media(max-width: 699px){.u-gc-10\\/1\\@to-small{--gc-start: 10;--gc-end: 1}}@media(min-width: 700px){.u-gc-10\\/2\\@from-small{--gc-start: 10;--gc-end: 2}}@media(max-width: 699px){.u-gc-10\\/2\\@to-small{--gc-start: 10;--gc-end: 2}}@media(min-width: 700px){.u-gc-10\\/3\\@from-small{--gc-start: 10;--gc-end: 3}}@media(max-width: 699px){.u-gc-10\\/3\\@to-small{--gc-start: 10;--gc-end: 3}}@media(min-width: 700px){.u-gc-10\\/4\\@from-small{--gc-start: 10;--gc-end: 4}}@media(max-width: 699px){.u-gc-10\\/4\\@to-small{--gc-start: 10;--gc-end: 4}}@media(min-width: 700px){.u-gc-10\\/5\\@from-small{--gc-start: 10;--gc-end: 5}}@media(max-width: 699px){.u-gc-10\\/5\\@to-small{--gc-start: 10;--gc-end: 5}}@media(min-width: 700px){.u-gc-10\\/6\\@from-small{--gc-start: 10;--gc-end: 6}}@media(max-width: 699px){.u-gc-10\\/6\\@to-small{--gc-start: 10;--gc-end: 6}}@media(min-width: 700px){.u-gc-10\\/7\\@from-small{--gc-start: 10;--gc-end: 7}}@media(max-width: 699px){.u-gc-10\\/7\\@to-small{--gc-start: 10;--gc-end: 7}}@media(min-width: 700px){.u-gc-10\\/8\\@from-small{--gc-start: 10;--gc-end: 8}}@media(max-width: 699px){.u-gc-10\\/8\\@to-small{--gc-start: 10;--gc-end: 8}}@media(min-width: 700px){.u-gc-10\\/9\\@from-small{--gc-start: 10;--gc-end: 9}}@media(max-width: 699px){.u-gc-10\\/9\\@to-small{--gc-start: 10;--gc-end: 9}}@media(min-width: 700px){.u-gc-10\\/10\\@from-small{--gc-start: 10;--gc-end: 10}}@media(max-width: 699px){.u-gc-10\\/10\\@to-small{--gc-start: 10;--gc-end: 10}}@media(min-width: 700px){.u-gc-10\\/11\\@from-small{--gc-start: 10;--gc-end: 11}}@media(max-width: 699px){.u-gc-10\\/11\\@to-small{--gc-start: 10;--gc-end: 11}}@media(min-width: 700px){.u-gc-10\\/12\\@from-small{--gc-start: 10;--gc-end: 12}}@media(max-width: 699px){.u-gc-10\\/12\\@to-small{--gc-start: 10;--gc-end: 12}}@media(min-width: 700px){.u-gc-10\\/13\\@from-small{--gc-start: 10;--gc-end: 13}}@media(max-width: 699px){.u-gc-10\\/13\\@to-small{--gc-start: 10;--gc-end: 13}}@media(min-width: 700px){.u-gc-11\\/1\\@from-small{--gc-start: 11;--gc-end: 1}}@media(max-width: 699px){.u-gc-11\\/1\\@to-small{--gc-start: 11;--gc-end: 1}}@media(min-width: 700px){.u-gc-11\\/2\\@from-small{--gc-start: 11;--gc-end: 2}}@media(max-width: 699px){.u-gc-11\\/2\\@to-small{--gc-start: 11;--gc-end: 2}}@media(min-width: 700px){.u-gc-11\\/3\\@from-small{--gc-start: 11;--gc-end: 3}}@media(max-width: 699px){.u-gc-11\\/3\\@to-small{--gc-start: 11;--gc-end: 3}}@media(min-width: 700px){.u-gc-11\\/4\\@from-small{--gc-start: 11;--gc-end: 4}}@media(max-width: 699px){.u-gc-11\\/4\\@to-small{--gc-start: 11;--gc-end: 4}}@media(min-width: 700px){.u-gc-11\\/5\\@from-small{--gc-start: 11;--gc-end: 5}}@media(max-width: 699px){.u-gc-11\\/5\\@to-small{--gc-start: 11;--gc-end: 5}}@media(min-width: 700px){.u-gc-11\\/6\\@from-small{--gc-start: 11;--gc-end: 6}}@media(max-width: 699px){.u-gc-11\\/6\\@to-small{--gc-start: 11;--gc-end: 6}}@media(min-width: 700px){.u-gc-11\\/7\\@from-small{--gc-start: 11;--gc-end: 7}}@media(max-width: 699px){.u-gc-11\\/7\\@to-small{--gc-start: 11;--gc-end: 7}}@media(min-width: 700px){.u-gc-11\\/8\\@from-small{--gc-start: 11;--gc-end: 8}}@media(max-width: 699px){.u-gc-11\\/8\\@to-small{--gc-start: 11;--gc-end: 8}}@media(min-width: 700px){.u-gc-11\\/9\\@from-small{--gc-start: 11;--gc-end: 9}}@media(max-width: 699px){.u-gc-11\\/9\\@to-small{--gc-start: 11;--gc-end: 9}}@media(min-width: 700px){.u-gc-11\\/10\\@from-small{--gc-start: 11;--gc-end: 10}}@media(max-width: 699px){.u-gc-11\\/10\\@to-small{--gc-start: 11;--gc-end: 10}}@media(min-width: 700px){.u-gc-11\\/11\\@from-small{--gc-start: 11;--gc-end: 11}}@media(max-width: 699px){.u-gc-11\\/11\\@to-small{--gc-start: 11;--gc-end: 11}}@media(min-width: 700px){.u-gc-11\\/12\\@from-small{--gc-start: 11;--gc-end: 12}}@media(max-width: 699px){.u-gc-11\\/12\\@to-small{--gc-start: 11;--gc-end: 12}}@media(min-width: 700px){.u-gc-11\\/13\\@from-small{--gc-start: 11;--gc-end: 13}}@media(max-width: 699px){.u-gc-11\\/13\\@to-small{--gc-start: 11;--gc-end: 13}}@media(min-width: 700px){.u-gc-12\\/1\\@from-small{--gc-start: 12;--gc-end: 1}}@media(max-width: 699px){.u-gc-12\\/1\\@to-small{--gc-start: 12;--gc-end: 1}}@media(min-width: 700px){.u-gc-12\\/2\\@from-small{--gc-start: 12;--gc-end: 2}}@media(max-width: 699px){.u-gc-12\\/2\\@to-small{--gc-start: 12;--gc-end: 2}}@media(min-width: 700px){.u-gc-12\\/3\\@from-small{--gc-start: 12;--gc-end: 3}}@media(max-width: 699px){.u-gc-12\\/3\\@to-small{--gc-start: 12;--gc-end: 3}}@media(min-width: 700px){.u-gc-12\\/4\\@from-small{--gc-start: 12;--gc-end: 4}}@media(max-width: 699px){.u-gc-12\\/4\\@to-small{--gc-start: 12;--gc-end: 4}}@media(min-width: 700px){.u-gc-12\\/5\\@from-small{--gc-start: 12;--gc-end: 5}}@media(max-width: 699px){.u-gc-12\\/5\\@to-small{--gc-start: 12;--gc-end: 5}}@media(min-width: 700px){.u-gc-12\\/6\\@from-small{--gc-start: 12;--gc-end: 6}}@media(max-width: 699px){.u-gc-12\\/6\\@to-small{--gc-start: 12;--gc-end: 6}}@media(min-width: 700px){.u-gc-12\\/7\\@from-small{--gc-start: 12;--gc-end: 7}}@media(max-width: 699px){.u-gc-12\\/7\\@to-small{--gc-start: 12;--gc-end: 7}}@media(min-width: 700px){.u-gc-12\\/8\\@from-small{--gc-start: 12;--gc-end: 8}}@media(max-width: 699px){.u-gc-12\\/8\\@to-small{--gc-start: 12;--gc-end: 8}}@media(min-width: 700px){.u-gc-12\\/9\\@from-small{--gc-start: 12;--gc-end: 9}}@media(max-width: 699px){.u-gc-12\\/9\\@to-small{--gc-start: 12;--gc-end: 9}}@media(min-width: 700px){.u-gc-12\\/10\\@from-small{--gc-start: 12;--gc-end: 10}}@media(max-width: 699px){.u-gc-12\\/10\\@to-small{--gc-start: 12;--gc-end: 10}}@media(min-width: 700px){.u-gc-12\\/11\\@from-small{--gc-start: 12;--gc-end: 11}}@media(max-width: 699px){.u-gc-12\\/11\\@to-small{--gc-start: 12;--gc-end: 11}}@media(min-width: 700px){.u-gc-12\\/12\\@from-small{--gc-start: 12;--gc-end: 12}}@media(max-width: 699px){.u-gc-12\\/12\\@to-small{--gc-start: 12;--gc-end: 12}}@media(min-width: 700px){.u-gc-12\\/13\\@from-small{--gc-start: 12;--gc-end: 13}}@media(max-width: 699px){.u-gc-12\\/13\\@to-small{--gc-start: 12;--gc-end: 13}}@media(min-width: 700px){.u-gc-13\\/1\\@from-small{--gc-start: 13;--gc-end: 1}}@media(max-width: 699px){.u-gc-13\\/1\\@to-small{--gc-start: 13;--gc-end: 1}}@media(min-width: 700px){.u-gc-13\\/2\\@from-small{--gc-start: 13;--gc-end: 2}}@media(max-width: 699px){.u-gc-13\\/2\\@to-small{--gc-start: 13;--gc-end: 2}}@media(min-width: 700px){.u-gc-13\\/3\\@from-small{--gc-start: 13;--gc-end: 3}}@media(max-width: 699px){.u-gc-13\\/3\\@to-small{--gc-start: 13;--gc-end: 3}}@media(min-width: 700px){.u-gc-13\\/4\\@from-small{--gc-start: 13;--gc-end: 4}}@media(max-width: 699px){.u-gc-13\\/4\\@to-small{--gc-start: 13;--gc-end: 4}}@media(min-width: 700px){.u-gc-13\\/5\\@from-small{--gc-start: 13;--gc-end: 5}}@media(max-width: 699px){.u-gc-13\\/5\\@to-small{--gc-start: 13;--gc-end: 5}}@media(min-width: 700px){.u-gc-13\\/6\\@from-small{--gc-start: 13;--gc-end: 6}}@media(max-width: 699px){.u-gc-13\\/6\\@to-small{--gc-start: 13;--gc-end: 6}}@media(min-width: 700px){.u-gc-13\\/7\\@from-small{--gc-start: 13;--gc-end: 7}}@media(max-width: 699px){.u-gc-13\\/7\\@to-small{--gc-start: 13;--gc-end: 7}}@media(min-width: 700px){.u-gc-13\\/8\\@from-small{--gc-start: 13;--gc-end: 8}}@media(max-width: 699px){.u-gc-13\\/8\\@to-small{--gc-start: 13;--gc-end: 8}}@media(min-width: 700px){.u-gc-13\\/9\\@from-small{--gc-start: 13;--gc-end: 9}}@media(max-width: 699px){.u-gc-13\\/9\\@to-small{--gc-start: 13;--gc-end: 9}}@media(min-width: 700px){.u-gc-13\\/10\\@from-small{--gc-start: 13;--gc-end: 10}}@media(max-width: 699px){.u-gc-13\\/10\\@to-small{--gc-start: 13;--gc-end: 10}}@media(min-width: 700px){.u-gc-13\\/11\\@from-small{--gc-start: 13;--gc-end: 11}}@media(max-width: 699px){.u-gc-13\\/11\\@to-small{--gc-start: 13;--gc-end: 11}}@media(min-width: 700px){.u-gc-13\\/12\\@from-small{--gc-start: 13;--gc-end: 12}}@media(max-width: 699px){.u-gc-13\\/12\\@to-small{--gc-start: 13;--gc-end: 12}}@media(min-width: 700px){.u-gc-13\\/13\\@from-small{--gc-start: 13;--gc-end: 13}}@media(max-width: 699px){.u-gc-13\\/13\\@to-small{--gc-start: 13;--gc-end: 13}}@media(min-width: 1000px){.u-gc-1\\/1\\@from-medium{--gc-start: 1;--gc-end: 1}}@media(max-width: 999px){.u-gc-1\\/1\\@to-medium{--gc-start: 1;--gc-end: 1}}@media(min-width: 1000px){.u-gc-1\\/2\\@from-medium{--gc-start: 1;--gc-end: 2}}@media(max-width: 999px){.u-gc-1\\/2\\@to-medium{--gc-start: 1;--gc-end: 2}}@media(min-width: 1000px){.u-gc-1\\/3\\@from-medium{--gc-start: 1;--gc-end: 3}}@media(max-width: 999px){.u-gc-1\\/3\\@to-medium{--gc-start: 1;--gc-end: 3}}@media(min-width: 1000px){.u-gc-1\\/4\\@from-medium{--gc-start: 1;--gc-end: 4}}@media(max-width: 999px){.u-gc-1\\/4\\@to-medium{--gc-start: 1;--gc-end: 4}}@media(min-width: 1000px){.u-gc-1\\/5\\@from-medium{--gc-start: 1;--gc-end: 5}}@media(max-width: 999px){.u-gc-1\\/5\\@to-medium{--gc-start: 1;--gc-end: 5}}@media(min-width: 1000px){.u-gc-1\\/6\\@from-medium{--gc-start: 1;--gc-end: 6}}@media(max-width: 999px){.u-gc-1\\/6\\@to-medium{--gc-start: 1;--gc-end: 6}}@media(min-width: 1000px){.u-gc-1\\/7\\@from-medium{--gc-start: 1;--gc-end: 7}}@media(max-width: 999px){.u-gc-1\\/7\\@to-medium{--gc-start: 1;--gc-end: 7}}@media(min-width: 1000px){.u-gc-1\\/8\\@from-medium{--gc-start: 1;--gc-end: 8}}@media(max-width: 999px){.u-gc-1\\/8\\@to-medium{--gc-start: 1;--gc-end: 8}}@media(min-width: 1000px){.u-gc-1\\/9\\@from-medium{--gc-start: 1;--gc-end: 9}}@media(max-width: 999px){.u-gc-1\\/9\\@to-medium{--gc-start: 1;--gc-end: 9}}@media(min-width: 1000px){.u-gc-1\\/10\\@from-medium{--gc-start: 1;--gc-end: 10}}@media(max-width: 999px){.u-gc-1\\/10\\@to-medium{--gc-start: 1;--gc-end: 10}}@media(min-width: 1000px){.u-gc-1\\/11\\@from-medium{--gc-start: 1;--gc-end: 11}}@media(max-width: 999px){.u-gc-1\\/11\\@to-medium{--gc-start: 1;--gc-end: 11}}@media(min-width: 1000px){.u-gc-1\\/12\\@from-medium{--gc-start: 1;--gc-end: 12}}@media(max-width: 999px){.u-gc-1\\/12\\@to-medium{--gc-start: 1;--gc-end: 12}}@media(min-width: 1000px){.u-gc-1\\/13\\@from-medium{--gc-start: 1;--gc-end: 13}}@media(max-width: 999px){.u-gc-1\\/13\\@to-medium{--gc-start: 1;--gc-end: 13}}@media(min-width: 1000px){.u-gc-2\\/1\\@from-medium{--gc-start: 2;--gc-end: 1}}@media(max-width: 999px){.u-gc-2\\/1\\@to-medium{--gc-start: 2;--gc-end: 1}}@media(min-width: 1000px){.u-gc-2\\/2\\@from-medium{--gc-start: 2;--gc-end: 2}}@media(max-width: 999px){.u-gc-2\\/2\\@to-medium{--gc-start: 2;--gc-end: 2}}@media(min-width: 1000px){.u-gc-2\\/3\\@from-medium{--gc-start: 2;--gc-end: 3}}@media(max-width: 999px){.u-gc-2\\/3\\@to-medium{--gc-start: 2;--gc-end: 3}}@media(min-width: 1000px){.u-gc-2\\/4\\@from-medium{--gc-start: 2;--gc-end: 4}}@media(max-width: 999px){.u-gc-2\\/4\\@to-medium{--gc-start: 2;--gc-end: 4}}@media(min-width: 1000px){.u-gc-2\\/5\\@from-medium{--gc-start: 2;--gc-end: 5}}@media(max-width: 999px){.u-gc-2\\/5\\@to-medium{--gc-start: 2;--gc-end: 5}}@media(min-width: 1000px){.u-gc-2\\/6\\@from-medium{--gc-start: 2;--gc-end: 6}}@media(max-width: 999px){.u-gc-2\\/6\\@to-medium{--gc-start: 2;--gc-end: 6}}@media(min-width: 1000px){.u-gc-2\\/7\\@from-medium{--gc-start: 2;--gc-end: 7}}@media(max-width: 999px){.u-gc-2\\/7\\@to-medium{--gc-start: 2;--gc-end: 7}}@media(min-width: 1000px){.u-gc-2\\/8\\@from-medium{--gc-start: 2;--gc-end: 8}}@media(max-width: 999px){.u-gc-2\\/8\\@to-medium{--gc-start: 2;--gc-end: 8}}@media(min-width: 1000px){.u-gc-2\\/9\\@from-medium{--gc-start: 2;--gc-end: 9}}@media(max-width: 999px){.u-gc-2\\/9\\@to-medium{--gc-start: 2;--gc-end: 9}}@media(min-width: 1000px){.u-gc-2\\/10\\@from-medium{--gc-start: 2;--gc-end: 10}}@media(max-width: 999px){.u-gc-2\\/10\\@to-medium{--gc-start: 2;--gc-end: 10}}@media(min-width: 1000px){.u-gc-2\\/11\\@from-medium{--gc-start: 2;--gc-end: 11}}@media(max-width: 999px){.u-gc-2\\/11\\@to-medium{--gc-start: 2;--gc-end: 11}}@media(min-width: 1000px){.u-gc-2\\/12\\@from-medium{--gc-start: 2;--gc-end: 12}}@media(max-width: 999px){.u-gc-2\\/12\\@to-medium{--gc-start: 2;--gc-end: 12}}@media(min-width: 1000px){.u-gc-2\\/13\\@from-medium{--gc-start: 2;--gc-end: 13}}@media(max-width: 999px){.u-gc-2\\/13\\@to-medium{--gc-start: 2;--gc-end: 13}}@media(min-width: 1000px){.u-gc-3\\/1\\@from-medium{--gc-start: 3;--gc-end: 1}}@media(max-width: 999px){.u-gc-3\\/1\\@to-medium{--gc-start: 3;--gc-end: 1}}@media(min-width: 1000px){.u-gc-3\\/2\\@from-medium{--gc-start: 3;--gc-end: 2}}@media(max-width: 999px){.u-gc-3\\/2\\@to-medium{--gc-start: 3;--gc-end: 2}}@media(min-width: 1000px){.u-gc-3\\/3\\@from-medium{--gc-start: 3;--gc-end: 3}}@media(max-width: 999px){.u-gc-3\\/3\\@to-medium{--gc-start: 3;--gc-end: 3}}@media(min-width: 1000px){.u-gc-3\\/4\\@from-medium{--gc-start: 3;--gc-end: 4}}@media(max-width: 999px){.u-gc-3\\/4\\@to-medium{--gc-start: 3;--gc-end: 4}}@media(min-width: 1000px){.u-gc-3\\/5\\@from-medium{--gc-start: 3;--gc-end: 5}}@media(max-width: 999px){.u-gc-3\\/5\\@to-medium{--gc-start: 3;--gc-end: 5}}@media(min-width: 1000px){.u-gc-3\\/6\\@from-medium{--gc-start: 3;--gc-end: 6}}@media(max-width: 999px){.u-gc-3\\/6\\@to-medium{--gc-start: 3;--gc-end: 6}}@media(min-width: 1000px){.u-gc-3\\/7\\@from-medium{--gc-start: 3;--gc-end: 7}}@media(max-width: 999px){.u-gc-3\\/7\\@to-medium{--gc-start: 3;--gc-end: 7}}@media(min-width: 1000px){.u-gc-3\\/8\\@from-medium{--gc-start: 3;--gc-end: 8}}@media(max-width: 999px){.u-gc-3\\/8\\@to-medium{--gc-start: 3;--gc-end: 8}}@media(min-width: 1000px){.u-gc-3\\/9\\@from-medium{--gc-start: 3;--gc-end: 9}}@media(max-width: 999px){.u-gc-3\\/9\\@to-medium{--gc-start: 3;--gc-end: 9}}@media(min-width: 1000px){.u-gc-3\\/10\\@from-medium{--gc-start: 3;--gc-end: 10}}@media(max-width: 999px){.u-gc-3\\/10\\@to-medium{--gc-start: 3;--gc-end: 10}}@media(min-width: 1000px){.u-gc-3\\/11\\@from-medium{--gc-start: 3;--gc-end: 11}}@media(max-width: 999px){.u-gc-3\\/11\\@to-medium{--gc-start: 3;--gc-end: 11}}@media(min-width: 1000px){.u-gc-3\\/12\\@from-medium{--gc-start: 3;--gc-end: 12}}@media(max-width: 999px){.u-gc-3\\/12\\@to-medium{--gc-start: 3;--gc-end: 12}}@media(min-width: 1000px){.u-gc-3\\/13\\@from-medium{--gc-start: 3;--gc-end: 13}}@media(max-width: 999px){.u-gc-3\\/13\\@to-medium{--gc-start: 3;--gc-end: 13}}@media(min-width: 1000px){.u-gc-4\\/1\\@from-medium{--gc-start: 4;--gc-end: 1}}@media(max-width: 999px){.u-gc-4\\/1\\@to-medium{--gc-start: 4;--gc-end: 1}}@media(min-width: 1000px){.u-gc-4\\/2\\@from-medium{--gc-start: 4;--gc-end: 2}}@media(max-width: 999px){.u-gc-4\\/2\\@to-medium{--gc-start: 4;--gc-end: 2}}@media(min-width: 1000px){.u-gc-4\\/3\\@from-medium{--gc-start: 4;--gc-end: 3}}@media(max-width: 999px){.u-gc-4\\/3\\@to-medium{--gc-start: 4;--gc-end: 3}}@media(min-width: 1000px){.u-gc-4\\/4\\@from-medium{--gc-start: 4;--gc-end: 4}}@media(max-width: 999px){.u-gc-4\\/4\\@to-medium{--gc-start: 4;--gc-end: 4}}@media(min-width: 1000px){.u-gc-4\\/5\\@from-medium{--gc-start: 4;--gc-end: 5}}@media(max-width: 999px){.u-gc-4\\/5\\@to-medium{--gc-start: 4;--gc-end: 5}}@media(min-width: 1000px){.u-gc-4\\/6\\@from-medium{--gc-start: 4;--gc-end: 6}}@media(max-width: 999px){.u-gc-4\\/6\\@to-medium{--gc-start: 4;--gc-end: 6}}@media(min-width: 1000px){.u-gc-4\\/7\\@from-medium{--gc-start: 4;--gc-end: 7}}@media(max-width: 999px){.u-gc-4\\/7\\@to-medium{--gc-start: 4;--gc-end: 7}}@media(min-width: 1000px){.u-gc-4\\/8\\@from-medium{--gc-start: 4;--gc-end: 8}}@media(max-width: 999px){.u-gc-4\\/8\\@to-medium{--gc-start: 4;--gc-end: 8}}@media(min-width: 1000px){.u-gc-4\\/9\\@from-medium{--gc-start: 4;--gc-end: 9}}@media(max-width: 999px){.u-gc-4\\/9\\@to-medium{--gc-start: 4;--gc-end: 9}}@media(min-width: 1000px){.u-gc-4\\/10\\@from-medium{--gc-start: 4;--gc-end: 10}}@media(max-width: 999px){.u-gc-4\\/10\\@to-medium{--gc-start: 4;--gc-end: 10}}@media(min-width: 1000px){.u-gc-4\\/11\\@from-medium{--gc-start: 4;--gc-end: 11}}@media(max-width: 999px){.u-gc-4\\/11\\@to-medium{--gc-start: 4;--gc-end: 11}}@media(min-width: 1000px){.u-gc-4\\/12\\@from-medium{--gc-start: 4;--gc-end: 12}}@media(max-width: 999px){.u-gc-4\\/12\\@to-medium{--gc-start: 4;--gc-end: 12}}@media(min-width: 1000px){.u-gc-4\\/13\\@from-medium{--gc-start: 4;--gc-end: 13}}@media(max-width: 999px){.u-gc-4\\/13\\@to-medium{--gc-start: 4;--gc-end: 13}}@media(min-width: 1000px){.u-gc-5\\/1\\@from-medium{--gc-start: 5;--gc-end: 1}}@media(max-width: 999px){.u-gc-5\\/1\\@to-medium{--gc-start: 5;--gc-end: 1}}@media(min-width: 1000px){.u-gc-5\\/2\\@from-medium{--gc-start: 5;--gc-end: 2}}@media(max-width: 999px){.u-gc-5\\/2\\@to-medium{--gc-start: 5;--gc-end: 2}}@media(min-width: 1000px){.u-gc-5\\/3\\@from-medium{--gc-start: 5;--gc-end: 3}}@media(max-width: 999px){.u-gc-5\\/3\\@to-medium{--gc-start: 5;--gc-end: 3}}@media(min-width: 1000px){.u-gc-5\\/4\\@from-medium{--gc-start: 5;--gc-end: 4}}@media(max-width: 999px){.u-gc-5\\/4\\@to-medium{--gc-start: 5;--gc-end: 4}}@media(min-width: 1000px){.u-gc-5\\/5\\@from-medium{--gc-start: 5;--gc-end: 5}}@media(max-width: 999px){.u-gc-5\\/5\\@to-medium{--gc-start: 5;--gc-end: 5}}@media(min-width: 1000px){.u-gc-5\\/6\\@from-medium{--gc-start: 5;--gc-end: 6}}@media(max-width: 999px){.u-gc-5\\/6\\@to-medium{--gc-start: 5;--gc-end: 6}}@media(min-width: 1000px){.u-gc-5\\/7\\@from-medium{--gc-start: 5;--gc-end: 7}}@media(max-width: 999px){.u-gc-5\\/7\\@to-medium{--gc-start: 5;--gc-end: 7}}@media(min-width: 1000px){.u-gc-5\\/8\\@from-medium{--gc-start: 5;--gc-end: 8}}@media(max-width: 999px){.u-gc-5\\/8\\@to-medium{--gc-start: 5;--gc-end: 8}}@media(min-width: 1000px){.u-gc-5\\/9\\@from-medium{--gc-start: 5;--gc-end: 9}}@media(max-width: 999px){.u-gc-5\\/9\\@to-medium{--gc-start: 5;--gc-end: 9}}@media(min-width: 1000px){.u-gc-5\\/10\\@from-medium{--gc-start: 5;--gc-end: 10}}@media(max-width: 999px){.u-gc-5\\/10\\@to-medium{--gc-start: 5;--gc-end: 10}}@media(min-width: 1000px){.u-gc-5\\/11\\@from-medium{--gc-start: 5;--gc-end: 11}}@media(max-width: 999px){.u-gc-5\\/11\\@to-medium{--gc-start: 5;--gc-end: 11}}@media(min-width: 1000px){.u-gc-5\\/12\\@from-medium{--gc-start: 5;--gc-end: 12}}@media(max-width: 999px){.u-gc-5\\/12\\@to-medium{--gc-start: 5;--gc-end: 12}}@media(min-width: 1000px){.u-gc-5\\/13\\@from-medium{--gc-start: 5;--gc-end: 13}}@media(max-width: 999px){.u-gc-5\\/13\\@to-medium{--gc-start: 5;--gc-end: 13}}@media(min-width: 1000px){.u-gc-6\\/1\\@from-medium{--gc-start: 6;--gc-end: 1}}@media(max-width: 999px){.u-gc-6\\/1\\@to-medium{--gc-start: 6;--gc-end: 1}}@media(min-width: 1000px){.u-gc-6\\/2\\@from-medium{--gc-start: 6;--gc-end: 2}}@media(max-width: 999px){.u-gc-6\\/2\\@to-medium{--gc-start: 6;--gc-end: 2}}@media(min-width: 1000px){.u-gc-6\\/3\\@from-medium{--gc-start: 6;--gc-end: 3}}@media(max-width: 999px){.u-gc-6\\/3\\@to-medium{--gc-start: 6;--gc-end: 3}}@media(min-width: 1000px){.u-gc-6\\/4\\@from-medium{--gc-start: 6;--gc-end: 4}}@media(max-width: 999px){.u-gc-6\\/4\\@to-medium{--gc-start: 6;--gc-end: 4}}@media(min-width: 1000px){.u-gc-6\\/5\\@from-medium{--gc-start: 6;--gc-end: 5}}@media(max-width: 999px){.u-gc-6\\/5\\@to-medium{--gc-start: 6;--gc-end: 5}}@media(min-width: 1000px){.u-gc-6\\/6\\@from-medium{--gc-start: 6;--gc-end: 6}}@media(max-width: 999px){.u-gc-6\\/6\\@to-medium{--gc-start: 6;--gc-end: 6}}@media(min-width: 1000px){.u-gc-6\\/7\\@from-medium{--gc-start: 6;--gc-end: 7}}@media(max-width: 999px){.u-gc-6\\/7\\@to-medium{--gc-start: 6;--gc-end: 7}}@media(min-width: 1000px){.u-gc-6\\/8\\@from-medium{--gc-start: 6;--gc-end: 8}}@media(max-width: 999px){.u-gc-6\\/8\\@to-medium{--gc-start: 6;--gc-end: 8}}@media(min-width: 1000px){.u-gc-6\\/9\\@from-medium{--gc-start: 6;--gc-end: 9}}@media(max-width: 999px){.u-gc-6\\/9\\@to-medium{--gc-start: 6;--gc-end: 9}}@media(min-width: 1000px){.u-gc-6\\/10\\@from-medium{--gc-start: 6;--gc-end: 10}}@media(max-width: 999px){.u-gc-6\\/10\\@to-medium{--gc-start: 6;--gc-end: 10}}@media(min-width: 1000px){.u-gc-6\\/11\\@from-medium{--gc-start: 6;--gc-end: 11}}@media(max-width: 999px){.u-gc-6\\/11\\@to-medium{--gc-start: 6;--gc-end: 11}}@media(min-width: 1000px){.u-gc-6\\/12\\@from-medium{--gc-start: 6;--gc-end: 12}}@media(max-width: 999px){.u-gc-6\\/12\\@to-medium{--gc-start: 6;--gc-end: 12}}@media(min-width: 1000px){.u-gc-6\\/13\\@from-medium{--gc-start: 6;--gc-end: 13}}@media(max-width: 999px){.u-gc-6\\/13\\@to-medium{--gc-start: 6;--gc-end: 13}}@media(min-width: 1000px){.u-gc-7\\/1\\@from-medium{--gc-start: 7;--gc-end: 1}}@media(max-width: 999px){.u-gc-7\\/1\\@to-medium{--gc-start: 7;--gc-end: 1}}@media(min-width: 1000px){.u-gc-7\\/2\\@from-medium{--gc-start: 7;--gc-end: 2}}@media(max-width: 999px){.u-gc-7\\/2\\@to-medium{--gc-start: 7;--gc-end: 2}}@media(min-width: 1000px){.u-gc-7\\/3\\@from-medium{--gc-start: 7;--gc-end: 3}}@media(max-width: 999px){.u-gc-7\\/3\\@to-medium{--gc-start: 7;--gc-end: 3}}@media(min-width: 1000px){.u-gc-7\\/4\\@from-medium{--gc-start: 7;--gc-end: 4}}@media(max-width: 999px){.u-gc-7\\/4\\@to-medium{--gc-start: 7;--gc-end: 4}}@media(min-width: 1000px){.u-gc-7\\/5\\@from-medium{--gc-start: 7;--gc-end: 5}}@media(max-width: 999px){.u-gc-7\\/5\\@to-medium{--gc-start: 7;--gc-end: 5}}@media(min-width: 1000px){.u-gc-7\\/6\\@from-medium{--gc-start: 7;--gc-end: 6}}@media(max-width: 999px){.u-gc-7\\/6\\@to-medium{--gc-start: 7;--gc-end: 6}}@media(min-width: 1000px){.u-gc-7\\/7\\@from-medium{--gc-start: 7;--gc-end: 7}}@media(max-width: 999px){.u-gc-7\\/7\\@to-medium{--gc-start: 7;--gc-end: 7}}@media(min-width: 1000px){.u-gc-7\\/8\\@from-medium{--gc-start: 7;--gc-end: 8}}@media(max-width: 999px){.u-gc-7\\/8\\@to-medium{--gc-start: 7;--gc-end: 8}}@media(min-width: 1000px){.u-gc-7\\/9\\@from-medium{--gc-start: 7;--gc-end: 9}}@media(max-width: 999px){.u-gc-7\\/9\\@to-medium{--gc-start: 7;--gc-end: 9}}@media(min-width: 1000px){.u-gc-7\\/10\\@from-medium{--gc-start: 7;--gc-end: 10}}@media(max-width: 999px){.u-gc-7\\/10\\@to-medium{--gc-start: 7;--gc-end: 10}}@media(min-width: 1000px){.u-gc-7\\/11\\@from-medium{--gc-start: 7;--gc-end: 11}}@media(max-width: 999px){.u-gc-7\\/11\\@to-medium{--gc-start: 7;--gc-end: 11}}@media(min-width: 1000px){.u-gc-7\\/12\\@from-medium{--gc-start: 7;--gc-end: 12}}@media(max-width: 999px){.u-gc-7\\/12\\@to-medium{--gc-start: 7;--gc-end: 12}}@media(min-width: 1000px){.u-gc-7\\/13\\@from-medium{--gc-start: 7;--gc-end: 13}}@media(max-width: 999px){.u-gc-7\\/13\\@to-medium{--gc-start: 7;--gc-end: 13}}@media(min-width: 1000px){.u-gc-8\\/1\\@from-medium{--gc-start: 8;--gc-end: 1}}@media(max-width: 999px){.u-gc-8\\/1\\@to-medium{--gc-start: 8;--gc-end: 1}}@media(min-width: 1000px){.u-gc-8\\/2\\@from-medium{--gc-start: 8;--gc-end: 2}}@media(max-width: 999px){.u-gc-8\\/2\\@to-medium{--gc-start: 8;--gc-end: 2}}@media(min-width: 1000px){.u-gc-8\\/3\\@from-medium{--gc-start: 8;--gc-end: 3}}@media(max-width: 999px){.u-gc-8\\/3\\@to-medium{--gc-start: 8;--gc-end: 3}}@media(min-width: 1000px){.u-gc-8\\/4\\@from-medium{--gc-start: 8;--gc-end: 4}}@media(max-width: 999px){.u-gc-8\\/4\\@to-medium{--gc-start: 8;--gc-end: 4}}@media(min-width: 1000px){.u-gc-8\\/5\\@from-medium{--gc-start: 8;--gc-end: 5}}@media(max-width: 999px){.u-gc-8\\/5\\@to-medium{--gc-start: 8;--gc-end: 5}}@media(min-width: 1000px){.u-gc-8\\/6\\@from-medium{--gc-start: 8;--gc-end: 6}}@media(max-width: 999px){.u-gc-8\\/6\\@to-medium{--gc-start: 8;--gc-end: 6}}@media(min-width: 1000px){.u-gc-8\\/7\\@from-medium{--gc-start: 8;--gc-end: 7}}@media(max-width: 999px){.u-gc-8\\/7\\@to-medium{--gc-start: 8;--gc-end: 7}}@media(min-width: 1000px){.u-gc-8\\/8\\@from-medium{--gc-start: 8;--gc-end: 8}}@media(max-width: 999px){.u-gc-8\\/8\\@to-medium{--gc-start: 8;--gc-end: 8}}@media(min-width: 1000px){.u-gc-8\\/9\\@from-medium{--gc-start: 8;--gc-end: 9}}@media(max-width: 999px){.u-gc-8\\/9\\@to-medium{--gc-start: 8;--gc-end: 9}}@media(min-width: 1000px){.u-gc-8\\/10\\@from-medium{--gc-start: 8;--gc-end: 10}}@media(max-width: 999px){.u-gc-8\\/10\\@to-medium{--gc-start: 8;--gc-end: 10}}@media(min-width: 1000px){.u-gc-8\\/11\\@from-medium{--gc-start: 8;--gc-end: 11}}@media(max-width: 999px){.u-gc-8\\/11\\@to-medium{--gc-start: 8;--gc-end: 11}}@media(min-width: 1000px){.u-gc-8\\/12\\@from-medium{--gc-start: 8;--gc-end: 12}}@media(max-width: 999px){.u-gc-8\\/12\\@to-medium{--gc-start: 8;--gc-end: 12}}@media(min-width: 1000px){.u-gc-8\\/13\\@from-medium{--gc-start: 8;--gc-end: 13}}@media(max-width: 999px){.u-gc-8\\/13\\@to-medium{--gc-start: 8;--gc-end: 13}}@media(min-width: 1000px){.u-gc-9\\/1\\@from-medium{--gc-start: 9;--gc-end: 1}}@media(max-width: 999px){.u-gc-9\\/1\\@to-medium{--gc-start: 9;--gc-end: 1}}@media(min-width: 1000px){.u-gc-9\\/2\\@from-medium{--gc-start: 9;--gc-end: 2}}@media(max-width: 999px){.u-gc-9\\/2\\@to-medium{--gc-start: 9;--gc-end: 2}}@media(min-width: 1000px){.u-gc-9\\/3\\@from-medium{--gc-start: 9;--gc-end: 3}}@media(max-width: 999px){.u-gc-9\\/3\\@to-medium{--gc-start: 9;--gc-end: 3}}@media(min-width: 1000px){.u-gc-9\\/4\\@from-medium{--gc-start: 9;--gc-end: 4}}@media(max-width: 999px){.u-gc-9\\/4\\@to-medium{--gc-start: 9;--gc-end: 4}}@media(min-width: 1000px){.u-gc-9\\/5\\@from-medium{--gc-start: 9;--gc-end: 5}}@media(max-width: 999px){.u-gc-9\\/5\\@to-medium{--gc-start: 9;--gc-end: 5}}@media(min-width: 1000px){.u-gc-9\\/6\\@from-medium{--gc-start: 9;--gc-end: 6}}@media(max-width: 999px){.u-gc-9\\/6\\@to-medium{--gc-start: 9;--gc-end: 6}}@media(min-width: 1000px){.u-gc-9\\/7\\@from-medium{--gc-start: 9;--gc-end: 7}}@media(max-width: 999px){.u-gc-9\\/7\\@to-medium{--gc-start: 9;--gc-end: 7}}@media(min-width: 1000px){.u-gc-9\\/8\\@from-medium{--gc-start: 9;--gc-end: 8}}@media(max-width: 999px){.u-gc-9\\/8\\@to-medium{--gc-start: 9;--gc-end: 8}}@media(min-width: 1000px){.u-gc-9\\/9\\@from-medium{--gc-start: 9;--gc-end: 9}}@media(max-width: 999px){.u-gc-9\\/9\\@to-medium{--gc-start: 9;--gc-end: 9}}@media(min-width: 1000px){.u-gc-9\\/10\\@from-medium{--gc-start: 9;--gc-end: 10}}@media(max-width: 999px){.u-gc-9\\/10\\@to-medium{--gc-start: 9;--gc-end: 10}}@media(min-width: 1000px){.u-gc-9\\/11\\@from-medium{--gc-start: 9;--gc-end: 11}}@media(max-width: 999px){.u-gc-9\\/11\\@to-medium{--gc-start: 9;--gc-end: 11}}@media(min-width: 1000px){.u-gc-9\\/12\\@from-medium{--gc-start: 9;--gc-end: 12}}@media(max-width: 999px){.u-gc-9\\/12\\@to-medium{--gc-start: 9;--gc-end: 12}}@media(min-width: 1000px){.u-gc-9\\/13\\@from-medium{--gc-start: 9;--gc-end: 13}}@media(max-width: 999px){.u-gc-9\\/13\\@to-medium{--gc-start: 9;--gc-end: 13}}@media(min-width: 1000px){.u-gc-10\\/1\\@from-medium{--gc-start: 10;--gc-end: 1}}@media(max-width: 999px){.u-gc-10\\/1\\@to-medium{--gc-start: 10;--gc-end: 1}}@media(min-width: 1000px){.u-gc-10\\/2\\@from-medium{--gc-start: 10;--gc-end: 2}}@media(max-width: 999px){.u-gc-10\\/2\\@to-medium{--gc-start: 10;--gc-end: 2}}@media(min-width: 1000px){.u-gc-10\\/3\\@from-medium{--gc-start: 10;--gc-end: 3}}@media(max-width: 999px){.u-gc-10\\/3\\@to-medium{--gc-start: 10;--gc-end: 3}}@media(min-width: 1000px){.u-gc-10\\/4\\@from-medium{--gc-start: 10;--gc-end: 4}}@media(max-width: 999px){.u-gc-10\\/4\\@to-medium{--gc-start: 10;--gc-end: 4}}@media(min-width: 1000px){.u-gc-10\\/5\\@from-medium{--gc-start: 10;--gc-end: 5}}@media(max-width: 999px){.u-gc-10\\/5\\@to-medium{--gc-start: 10;--gc-end: 5}}@media(min-width: 1000px){.u-gc-10\\/6\\@from-medium{--gc-start: 10;--gc-end: 6}}@media(max-width: 999px){.u-gc-10\\/6\\@to-medium{--gc-start: 10;--gc-end: 6}}@media(min-width: 1000px){.u-gc-10\\/7\\@from-medium{--gc-start: 10;--gc-end: 7}}@media(max-width: 999px){.u-gc-10\\/7\\@to-medium{--gc-start: 10;--gc-end: 7}}@media(min-width: 1000px){.u-gc-10\\/8\\@from-medium{--gc-start: 10;--gc-end: 8}}@media(max-width: 999px){.u-gc-10\\/8\\@to-medium{--gc-start: 10;--gc-end: 8}}@media(min-width: 1000px){.u-gc-10\\/9\\@from-medium{--gc-start: 10;--gc-end: 9}}@media(max-width: 999px){.u-gc-10\\/9\\@to-medium{--gc-start: 10;--gc-end: 9}}@media(min-width: 1000px){.u-gc-10\\/10\\@from-medium{--gc-start: 10;--gc-end: 10}}@media(max-width: 999px){.u-gc-10\\/10\\@to-medium{--gc-start: 10;--gc-end: 10}}@media(min-width: 1000px){.u-gc-10\\/11\\@from-medium{--gc-start: 10;--gc-end: 11}}@media(max-width: 999px){.u-gc-10\\/11\\@to-medium{--gc-start: 10;--gc-end: 11}}@media(min-width: 1000px){.u-gc-10\\/12\\@from-medium{--gc-start: 10;--gc-end: 12}}@media(max-width: 999px){.u-gc-10\\/12\\@to-medium{--gc-start: 10;--gc-end: 12}}@media(min-width: 1000px){.u-gc-10\\/13\\@from-medium{--gc-start: 10;--gc-end: 13}}@media(max-width: 999px){.u-gc-10\\/13\\@to-medium{--gc-start: 10;--gc-end: 13}}@media(min-width: 1000px){.u-gc-11\\/1\\@from-medium{--gc-start: 11;--gc-end: 1}}@media(max-width: 999px){.u-gc-11\\/1\\@to-medium{--gc-start: 11;--gc-end: 1}}@media(min-width: 1000px){.u-gc-11\\/2\\@from-medium{--gc-start: 11;--gc-end: 2}}@media(max-width: 999px){.u-gc-11\\/2\\@to-medium{--gc-start: 11;--gc-end: 2}}@media(min-width: 1000px){.u-gc-11\\/3\\@from-medium{--gc-start: 11;--gc-end: 3}}@media(max-width: 999px){.u-gc-11\\/3\\@to-medium{--gc-start: 11;--gc-end: 3}}@media(min-width: 1000px){.u-gc-11\\/4\\@from-medium{--gc-start: 11;--gc-end: 4}}@media(max-width: 999px){.u-gc-11\\/4\\@to-medium{--gc-start: 11;--gc-end: 4}}@media(min-width: 1000px){.u-gc-11\\/5\\@from-medium{--gc-start: 11;--gc-end: 5}}@media(max-width: 999px){.u-gc-11\\/5\\@to-medium{--gc-start: 11;--gc-end: 5}}@media(min-width: 1000px){.u-gc-11\\/6\\@from-medium{--gc-start: 11;--gc-end: 6}}@media(max-width: 999px){.u-gc-11\\/6\\@to-medium{--gc-start: 11;--gc-end: 6}}@media(min-width: 1000px){.u-gc-11\\/7\\@from-medium{--gc-start: 11;--gc-end: 7}}@media(max-width: 999px){.u-gc-11\\/7\\@to-medium{--gc-start: 11;--gc-end: 7}}@media(min-width: 1000px){.u-gc-11\\/8\\@from-medium{--gc-start: 11;--gc-end: 8}}@media(max-width: 999px){.u-gc-11\\/8\\@to-medium{--gc-start: 11;--gc-end: 8}}@media(min-width: 1000px){.u-gc-11\\/9\\@from-medium{--gc-start: 11;--gc-end: 9}}@media(max-width: 999px){.u-gc-11\\/9\\@to-medium{--gc-start: 11;--gc-end: 9}}@media(min-width: 1000px){.u-gc-11\\/10\\@from-medium{--gc-start: 11;--gc-end: 10}}@media(max-width: 999px){.u-gc-11\\/10\\@to-medium{--gc-start: 11;--gc-end: 10}}@media(min-width: 1000px){.u-gc-11\\/11\\@from-medium{--gc-start: 11;--gc-end: 11}}@media(max-width: 999px){.u-gc-11\\/11\\@to-medium{--gc-start: 11;--gc-end: 11}}@media(min-width: 1000px){.u-gc-11\\/12\\@from-medium{--gc-start: 11;--gc-end: 12}}@media(max-width: 999px){.u-gc-11\\/12\\@to-medium{--gc-start: 11;--gc-end: 12}}@media(min-width: 1000px){.u-gc-11\\/13\\@from-medium{--gc-start: 11;--gc-end: 13}}@media(max-width: 999px){.u-gc-11\\/13\\@to-medium{--gc-start: 11;--gc-end: 13}}@media(min-width: 1000px){.u-gc-12\\/1\\@from-medium{--gc-start: 12;--gc-end: 1}}@media(max-width: 999px){.u-gc-12\\/1\\@to-medium{--gc-start: 12;--gc-end: 1}}@media(min-width: 1000px){.u-gc-12\\/2\\@from-medium{--gc-start: 12;--gc-end: 2}}@media(max-width: 999px){.u-gc-12\\/2\\@to-medium{--gc-start: 12;--gc-end: 2}}@media(min-width: 1000px){.u-gc-12\\/3\\@from-medium{--gc-start: 12;--gc-end: 3}}@media(max-width: 999px){.u-gc-12\\/3\\@to-medium{--gc-start: 12;--gc-end: 3}}@media(min-width: 1000px){.u-gc-12\\/4\\@from-medium{--gc-start: 12;--gc-end: 4}}@media(max-width: 999px){.u-gc-12\\/4\\@to-medium{--gc-start: 12;--gc-end: 4}}@media(min-width: 1000px){.u-gc-12\\/5\\@from-medium{--gc-start: 12;--gc-end: 5}}@media(max-width: 999px){.u-gc-12\\/5\\@to-medium{--gc-start: 12;--gc-end: 5}}@media(min-width: 1000px){.u-gc-12\\/6\\@from-medium{--gc-start: 12;--gc-end: 6}}@media(max-width: 999px){.u-gc-12\\/6\\@to-medium{--gc-start: 12;--gc-end: 6}}@media(min-width: 1000px){.u-gc-12\\/7\\@from-medium{--gc-start: 12;--gc-end: 7}}@media(max-width: 999px){.u-gc-12\\/7\\@to-medium{--gc-start: 12;--gc-end: 7}}@media(min-width: 1000px){.u-gc-12\\/8\\@from-medium{--gc-start: 12;--gc-end: 8}}@media(max-width: 999px){.u-gc-12\\/8\\@to-medium{--gc-start: 12;--gc-end: 8}}@media(min-width: 1000px){.u-gc-12\\/9\\@from-medium{--gc-start: 12;--gc-end: 9}}@media(max-width: 999px){.u-gc-12\\/9\\@to-medium{--gc-start: 12;--gc-end: 9}}@media(min-width: 1000px){.u-gc-12\\/10\\@from-medium{--gc-start: 12;--gc-end: 10}}@media(max-width: 999px){.u-gc-12\\/10\\@to-medium{--gc-start: 12;--gc-end: 10}}@media(min-width: 1000px){.u-gc-12\\/11\\@from-medium{--gc-start: 12;--gc-end: 11}}@media(max-width: 999px){.u-gc-12\\/11\\@to-medium{--gc-start: 12;--gc-end: 11}}@media(min-width: 1000px){.u-gc-12\\/12\\@from-medium{--gc-start: 12;--gc-end: 12}}@media(max-width: 999px){.u-gc-12\\/12\\@to-medium{--gc-start: 12;--gc-end: 12}}@media(min-width: 1000px){.u-gc-12\\/13\\@from-medium{--gc-start: 12;--gc-end: 13}}@media(max-width: 999px){.u-gc-12\\/13\\@to-medium{--gc-start: 12;--gc-end: 13}}@media(min-width: 1000px){.u-gc-13\\/1\\@from-medium{--gc-start: 13;--gc-end: 1}}@media(max-width: 999px){.u-gc-13\\/1\\@to-medium{--gc-start: 13;--gc-end: 1}}@media(min-width: 1000px){.u-gc-13\\/2\\@from-medium{--gc-start: 13;--gc-end: 2}}@media(max-width: 999px){.u-gc-13\\/2\\@to-medium{--gc-start: 13;--gc-end: 2}}@media(min-width: 1000px){.u-gc-13\\/3\\@from-medium{--gc-start: 13;--gc-end: 3}}@media(max-width: 999px){.u-gc-13\\/3\\@to-medium{--gc-start: 13;--gc-end: 3}}@media(min-width: 1000px){.u-gc-13\\/4\\@from-medium{--gc-start: 13;--gc-end: 4}}@media(max-width: 999px){.u-gc-13\\/4\\@to-medium{--gc-start: 13;--gc-end: 4}}@media(min-width: 1000px){.u-gc-13\\/5\\@from-medium{--gc-start: 13;--gc-end: 5}}@media(max-width: 999px){.u-gc-13\\/5\\@to-medium{--gc-start: 13;--gc-end: 5}}@media(min-width: 1000px){.u-gc-13\\/6\\@from-medium{--gc-start: 13;--gc-end: 6}}@media(max-width: 999px){.u-gc-13\\/6\\@to-medium{--gc-start: 13;--gc-end: 6}}@media(min-width: 1000px){.u-gc-13\\/7\\@from-medium{--gc-start: 13;--gc-end: 7}}@media(max-width: 999px){.u-gc-13\\/7\\@to-medium{--gc-start: 13;--gc-end: 7}}@media(min-width: 1000px){.u-gc-13\\/8\\@from-medium{--gc-start: 13;--gc-end: 8}}@media(max-width: 999px){.u-gc-13\\/8\\@to-medium{--gc-start: 13;--gc-end: 8}}@media(min-width: 1000px){.u-gc-13\\/9\\@from-medium{--gc-start: 13;--gc-end: 9}}@media(max-width: 999px){.u-gc-13\\/9\\@to-medium{--gc-start: 13;--gc-end: 9}}@media(min-width: 1000px){.u-gc-13\\/10\\@from-medium{--gc-start: 13;--gc-end: 10}}@media(max-width: 999px){.u-gc-13\\/10\\@to-medium{--gc-start: 13;--gc-end: 10}}@media(min-width: 1000px){.u-gc-13\\/11\\@from-medium{--gc-start: 13;--gc-end: 11}}@media(max-width: 999px){.u-gc-13\\/11\\@to-medium{--gc-start: 13;--gc-end: 11}}@media(min-width: 1000px){.u-gc-13\\/12\\@from-medium{--gc-start: 13;--gc-end: 12}}@media(max-width: 999px){.u-gc-13\\/12\\@to-medium{--gc-start: 13;--gc-end: 12}}@media(min-width: 1000px){.u-gc-13\\/13\\@from-medium{--gc-start: 13;--gc-end: 13}}@media(max-width: 999px){.u-gc-13\\/13\\@to-medium{--gc-start: 13;--gc-end: 13}}@media(min-width: 1200px){.u-gc-1\\/1\\@from-large{--gc-start: 1;--gc-end: 1}}@media(max-width: 1199px){.u-gc-1\\/1\\@to-large{--gc-start: 1;--gc-end: 1}}@media(min-width: 1200px){.u-gc-1\\/2\\@from-large{--gc-start: 1;--gc-end: 2}}@media(max-width: 1199px){.u-gc-1\\/2\\@to-large{--gc-start: 1;--gc-end: 2}}@media(min-width: 1200px){.u-gc-1\\/3\\@from-large{--gc-start: 1;--gc-end: 3}}@media(max-width: 1199px){.u-gc-1\\/3\\@to-large{--gc-start: 1;--gc-end: 3}}@media(min-width: 1200px){.u-gc-1\\/4\\@from-large{--gc-start: 1;--gc-end: 4}}@media(max-width: 1199px){.u-gc-1\\/4\\@to-large{--gc-start: 1;--gc-end: 4}}@media(min-width: 1200px){.u-gc-1\\/5\\@from-large{--gc-start: 1;--gc-end: 5}}@media(max-width: 1199px){.u-gc-1\\/5\\@to-large{--gc-start: 1;--gc-end: 5}}@media(min-width: 1200px){.u-gc-1\\/6\\@from-large{--gc-start: 1;--gc-end: 6}}@media(max-width: 1199px){.u-gc-1\\/6\\@to-large{--gc-start: 1;--gc-end: 6}}@media(min-width: 1200px){.u-gc-1\\/7\\@from-large{--gc-start: 1;--gc-end: 7}}@media(max-width: 1199px){.u-gc-1\\/7\\@to-large{--gc-start: 1;--gc-end: 7}}@media(min-width: 1200px){.u-gc-1\\/8\\@from-large{--gc-start: 1;--gc-end: 8}}@media(max-width: 1199px){.u-gc-1\\/8\\@to-large{--gc-start: 1;--gc-end: 8}}@media(min-width: 1200px){.u-gc-1\\/9\\@from-large{--gc-start: 1;--gc-end: 9}}@media(max-width: 1199px){.u-gc-1\\/9\\@to-large{--gc-start: 1;--gc-end: 9}}@media(min-width: 1200px){.u-gc-1\\/10\\@from-large{--gc-start: 1;--gc-end: 10}}@media(max-width: 1199px){.u-gc-1\\/10\\@to-large{--gc-start: 1;--gc-end: 10}}@media(min-width: 1200px){.u-gc-1\\/11\\@from-large{--gc-start: 1;--gc-end: 11}}@media(max-width: 1199px){.u-gc-1\\/11\\@to-large{--gc-start: 1;--gc-end: 11}}@media(min-width: 1200px){.u-gc-1\\/12\\@from-large{--gc-start: 1;--gc-end: 12}}@media(max-width: 1199px){.u-gc-1\\/12\\@to-large{--gc-start: 1;--gc-end: 12}}@media(min-width: 1200px){.u-gc-1\\/13\\@from-large{--gc-start: 1;--gc-end: 13}}@media(max-width: 1199px){.u-gc-1\\/13\\@to-large{--gc-start: 1;--gc-end: 13}}@media(min-width: 1200px){.u-gc-2\\/1\\@from-large{--gc-start: 2;--gc-end: 1}}@media(max-width: 1199px){.u-gc-2\\/1\\@to-large{--gc-start: 2;--gc-end: 1}}@media(min-width: 1200px){.u-gc-2\\/2\\@from-large{--gc-start: 2;--gc-end: 2}}@media(max-width: 1199px){.u-gc-2\\/2\\@to-large{--gc-start: 2;--gc-end: 2}}@media(min-width: 1200px){.u-gc-2\\/3\\@from-large{--gc-start: 2;--gc-end: 3}}@media(max-width: 1199px){.u-gc-2\\/3\\@to-large{--gc-start: 2;--gc-end: 3}}@media(min-width: 1200px){.u-gc-2\\/4\\@from-large{--gc-start: 2;--gc-end: 4}}@media(max-width: 1199px){.u-gc-2\\/4\\@to-large{--gc-start: 2;--gc-end: 4}}@media(min-width: 1200px){.u-gc-2\\/5\\@from-large{--gc-start: 2;--gc-end: 5}}@media(max-width: 1199px){.u-gc-2\\/5\\@to-large{--gc-start: 2;--gc-end: 5}}@media(min-width: 1200px){.u-gc-2\\/6\\@from-large{--gc-start: 2;--gc-end: 6}}@media(max-width: 1199px){.u-gc-2\\/6\\@to-large{--gc-start: 2;--gc-end: 6}}@media(min-width: 1200px){.u-gc-2\\/7\\@from-large{--gc-start: 2;--gc-end: 7}}@media(max-width: 1199px){.u-gc-2\\/7\\@to-large{--gc-start: 2;--gc-end: 7}}@media(min-width: 1200px){.u-gc-2\\/8\\@from-large{--gc-start: 2;--gc-end: 8}}@media(max-width: 1199px){.u-gc-2\\/8\\@to-large{--gc-start: 2;--gc-end: 8}}@media(min-width: 1200px){.u-gc-2\\/9\\@from-large{--gc-start: 2;--gc-end: 9}}@media(max-width: 1199px){.u-gc-2\\/9\\@to-large{--gc-start: 2;--gc-end: 9}}@media(min-width: 1200px){.u-gc-2\\/10\\@from-large{--gc-start: 2;--gc-end: 10}}@media(max-width: 1199px){.u-gc-2\\/10\\@to-large{--gc-start: 2;--gc-end: 10}}@media(min-width: 1200px){.u-gc-2\\/11\\@from-large{--gc-start: 2;--gc-end: 11}}@media(max-width: 1199px){.u-gc-2\\/11\\@to-large{--gc-start: 2;--gc-end: 11}}@media(min-width: 1200px){.u-gc-2\\/12\\@from-large{--gc-start: 2;--gc-end: 12}}@media(max-width: 1199px){.u-gc-2\\/12\\@to-large{--gc-start: 2;--gc-end: 12}}@media(min-width: 1200px){.u-gc-2\\/13\\@from-large{--gc-start: 2;--gc-end: 13}}@media(max-width: 1199px){.u-gc-2\\/13\\@to-large{--gc-start: 2;--gc-end: 13}}@media(min-width: 1200px){.u-gc-3\\/1\\@from-large{--gc-start: 3;--gc-end: 1}}@media(max-width: 1199px){.u-gc-3\\/1\\@to-large{--gc-start: 3;--gc-end: 1}}@media(min-width: 1200px){.u-gc-3\\/2\\@from-large{--gc-start: 3;--gc-end: 2}}@media(max-width: 1199px){.u-gc-3\\/2\\@to-large{--gc-start: 3;--gc-end: 2}}@media(min-width: 1200px){.u-gc-3\\/3\\@from-large{--gc-start: 3;--gc-end: 3}}@media(max-width: 1199px){.u-gc-3\\/3\\@to-large{--gc-start: 3;--gc-end: 3}}@media(min-width: 1200px){.u-gc-3\\/4\\@from-large{--gc-start: 3;--gc-end: 4}}@media(max-width: 1199px){.u-gc-3\\/4\\@to-large{--gc-start: 3;--gc-end: 4}}@media(min-width: 1200px){.u-gc-3\\/5\\@from-large{--gc-start: 3;--gc-end: 5}}@media(max-width: 1199px){.u-gc-3\\/5\\@to-large{--gc-start: 3;--gc-end: 5}}@media(min-width: 1200px){.u-gc-3\\/6\\@from-large{--gc-start: 3;--gc-end: 6}}@media(max-width: 1199px){.u-gc-3\\/6\\@to-large{--gc-start: 3;--gc-end: 6}}@media(min-width: 1200px){.u-gc-3\\/7\\@from-large{--gc-start: 3;--gc-end: 7}}@media(max-width: 1199px){.u-gc-3\\/7\\@to-large{--gc-start: 3;--gc-end: 7}}@media(min-width: 1200px){.u-gc-3\\/8\\@from-large{--gc-start: 3;--gc-end: 8}}@media(max-width: 1199px){.u-gc-3\\/8\\@to-large{--gc-start: 3;--gc-end: 8}}@media(min-width: 1200px){.u-gc-3\\/9\\@from-large{--gc-start: 3;--gc-end: 9}}@media(max-width: 1199px){.u-gc-3\\/9\\@to-large{--gc-start: 3;--gc-end: 9}}@media(min-width: 1200px){.u-gc-3\\/10\\@from-large{--gc-start: 3;--gc-end: 10}}@media(max-width: 1199px){.u-gc-3\\/10\\@to-large{--gc-start: 3;--gc-end: 10}}@media(min-width: 1200px){.u-gc-3\\/11\\@from-large{--gc-start: 3;--gc-end: 11}}@media(max-width: 1199px){.u-gc-3\\/11\\@to-large{--gc-start: 3;--gc-end: 11}}@media(min-width: 1200px){.u-gc-3\\/12\\@from-large{--gc-start: 3;--gc-end: 12}}@media(max-width: 1199px){.u-gc-3\\/12\\@to-large{--gc-start: 3;--gc-end: 12}}@media(min-width: 1200px){.u-gc-3\\/13\\@from-large{--gc-start: 3;--gc-end: 13}}@media(max-width: 1199px){.u-gc-3\\/13\\@to-large{--gc-start: 3;--gc-end: 13}}@media(min-width: 1200px){.u-gc-4\\/1\\@from-large{--gc-start: 4;--gc-end: 1}}@media(max-width: 1199px){.u-gc-4\\/1\\@to-large{--gc-start: 4;--gc-end: 1}}@media(min-width: 1200px){.u-gc-4\\/2\\@from-large{--gc-start: 4;--gc-end: 2}}@media(max-width: 1199px){.u-gc-4\\/2\\@to-large{--gc-start: 4;--gc-end: 2}}@media(min-width: 1200px){.u-gc-4\\/3\\@from-large{--gc-start: 4;--gc-end: 3}}@media(max-width: 1199px){.u-gc-4\\/3\\@to-large{--gc-start: 4;--gc-end: 3}}@media(min-width: 1200px){.u-gc-4\\/4\\@from-large{--gc-start: 4;--gc-end: 4}}@media(max-width: 1199px){.u-gc-4\\/4\\@to-large{--gc-start: 4;--gc-end: 4}}@media(min-width: 1200px){.u-gc-4\\/5\\@from-large{--gc-start: 4;--gc-end: 5}}@media(max-width: 1199px){.u-gc-4\\/5\\@to-large{--gc-start: 4;--gc-end: 5}}@media(min-width: 1200px){.u-gc-4\\/6\\@from-large{--gc-start: 4;--gc-end: 6}}@media(max-width: 1199px){.u-gc-4\\/6\\@to-large{--gc-start: 4;--gc-end: 6}}@media(min-width: 1200px){.u-gc-4\\/7\\@from-large{--gc-start: 4;--gc-end: 7}}@media(max-width: 1199px){.u-gc-4\\/7\\@to-large{--gc-start: 4;--gc-end: 7}}@media(min-width: 1200px){.u-gc-4\\/8\\@from-large{--gc-start: 4;--gc-end: 8}}@media(max-width: 1199px){.u-gc-4\\/8\\@to-large{--gc-start: 4;--gc-end: 8}}@media(min-width: 1200px){.u-gc-4\\/9\\@from-large{--gc-start: 4;--gc-end: 9}}@media(max-width: 1199px){.u-gc-4\\/9\\@to-large{--gc-start: 4;--gc-end: 9}}@media(min-width: 1200px){.u-gc-4\\/10\\@from-large{--gc-start: 4;--gc-end: 10}}@media(max-width: 1199px){.u-gc-4\\/10\\@to-large{--gc-start: 4;--gc-end: 10}}@media(min-width: 1200px){.u-gc-4\\/11\\@from-large{--gc-start: 4;--gc-end: 11}}@media(max-width: 1199px){.u-gc-4\\/11\\@to-large{--gc-start: 4;--gc-end: 11}}@media(min-width: 1200px){.u-gc-4\\/12\\@from-large{--gc-start: 4;--gc-end: 12}}@media(max-width: 1199px){.u-gc-4\\/12\\@to-large{--gc-start: 4;--gc-end: 12}}@media(min-width: 1200px){.u-gc-4\\/13\\@from-large{--gc-start: 4;--gc-end: 13}}@media(max-width: 1199px){.u-gc-4\\/13\\@to-large{--gc-start: 4;--gc-end: 13}}@media(min-width: 1200px){.u-gc-5\\/1\\@from-large{--gc-start: 5;--gc-end: 1}}@media(max-width: 1199px){.u-gc-5\\/1\\@to-large{--gc-start: 5;--gc-end: 1}}@media(min-width: 1200px){.u-gc-5\\/2\\@from-large{--gc-start: 5;--gc-end: 2}}@media(max-width: 1199px){.u-gc-5\\/2\\@to-large{--gc-start: 5;--gc-end: 2}}@media(min-width: 1200px){.u-gc-5\\/3\\@from-large{--gc-start: 5;--gc-end: 3}}@media(max-width: 1199px){.u-gc-5\\/3\\@to-large{--gc-start: 5;--gc-end: 3}}@media(min-width: 1200px){.u-gc-5\\/4\\@from-large{--gc-start: 5;--gc-end: 4}}@media(max-width: 1199px){.u-gc-5\\/4\\@to-large{--gc-start: 5;--gc-end: 4}}@media(min-width: 1200px){.u-gc-5\\/5\\@from-large{--gc-start: 5;--gc-end: 5}}@media(max-width: 1199px){.u-gc-5\\/5\\@to-large{--gc-start: 5;--gc-end: 5}}@media(min-width: 1200px){.u-gc-5\\/6\\@from-large{--gc-start: 5;--gc-end: 6}}@media(max-width: 1199px){.u-gc-5\\/6\\@to-large{--gc-start: 5;--gc-end: 6}}@media(min-width: 1200px){.u-gc-5\\/7\\@from-large{--gc-start: 5;--gc-end: 7}}@media(max-width: 1199px){.u-gc-5\\/7\\@to-large{--gc-start: 5;--gc-end: 7}}@media(min-width: 1200px){.u-gc-5\\/8\\@from-large{--gc-start: 5;--gc-end: 8}}@media(max-width: 1199px){.u-gc-5\\/8\\@to-large{--gc-start: 5;--gc-end: 8}}@media(min-width: 1200px){.u-gc-5\\/9\\@from-large{--gc-start: 5;--gc-end: 9}}@media(max-width: 1199px){.u-gc-5\\/9\\@to-large{--gc-start: 5;--gc-end: 9}}@media(min-width: 1200px){.u-gc-5\\/10\\@from-large{--gc-start: 5;--gc-end: 10}}@media(max-width: 1199px){.u-gc-5\\/10\\@to-large{--gc-start: 5;--gc-end: 10}}@media(min-width: 1200px){.u-gc-5\\/11\\@from-large{--gc-start: 5;--gc-end: 11}}@media(max-width: 1199px){.u-gc-5\\/11\\@to-large{--gc-start: 5;--gc-end: 11}}@media(min-width: 1200px){.u-gc-5\\/12\\@from-large{--gc-start: 5;--gc-end: 12}}@media(max-width: 1199px){.u-gc-5\\/12\\@to-large{--gc-start: 5;--gc-end: 12}}@media(min-width: 1200px){.u-gc-5\\/13\\@from-large{--gc-start: 5;--gc-end: 13}}@media(max-width: 1199px){.u-gc-5\\/13\\@to-large{--gc-start: 5;--gc-end: 13}}@media(min-width: 1200px){.u-gc-6\\/1\\@from-large{--gc-start: 6;--gc-end: 1}}@media(max-width: 1199px){.u-gc-6\\/1\\@to-large{--gc-start: 6;--gc-end: 1}}@media(min-width: 1200px){.u-gc-6\\/2\\@from-large{--gc-start: 6;--gc-end: 2}}@media(max-width: 1199px){.u-gc-6\\/2\\@to-large{--gc-start: 6;--gc-end: 2}}@media(min-width: 1200px){.u-gc-6\\/3\\@from-large{--gc-start: 6;--gc-end: 3}}@media(max-width: 1199px){.u-gc-6\\/3\\@to-large{--gc-start: 6;--gc-end: 3}}@media(min-width: 1200px){.u-gc-6\\/4\\@from-large{--gc-start: 6;--gc-end: 4}}@media(max-width: 1199px){.u-gc-6\\/4\\@to-large{--gc-start: 6;--gc-end: 4}}@media(min-width: 1200px){.u-gc-6\\/5\\@from-large{--gc-start: 6;--gc-end: 5}}@media(max-width: 1199px){.u-gc-6\\/5\\@to-large{--gc-start: 6;--gc-end: 5}}@media(min-width: 1200px){.u-gc-6\\/6\\@from-large{--gc-start: 6;--gc-end: 6}}@media(max-width: 1199px){.u-gc-6\\/6\\@to-large{--gc-start: 6;--gc-end: 6}}@media(min-width: 1200px){.u-gc-6\\/7\\@from-large{--gc-start: 6;--gc-end: 7}}@media(max-width: 1199px){.u-gc-6\\/7\\@to-large{--gc-start: 6;--gc-end: 7}}@media(min-width: 1200px){.u-gc-6\\/8\\@from-large{--gc-start: 6;--gc-end: 8}}@media(max-width: 1199px){.u-gc-6\\/8\\@to-large{--gc-start: 6;--gc-end: 8}}@media(min-width: 1200px){.u-gc-6\\/9\\@from-large{--gc-start: 6;--gc-end: 9}}@media(max-width: 1199px){.u-gc-6\\/9\\@to-large{--gc-start: 6;--gc-end: 9}}@media(min-width: 1200px){.u-gc-6\\/10\\@from-large{--gc-start: 6;--gc-end: 10}}@media(max-width: 1199px){.u-gc-6\\/10\\@to-large{--gc-start: 6;--gc-end: 10}}@media(min-width: 1200px){.u-gc-6\\/11\\@from-large{--gc-start: 6;--gc-end: 11}}@media(max-width: 1199px){.u-gc-6\\/11\\@to-large{--gc-start: 6;--gc-end: 11}}@media(min-width: 1200px){.u-gc-6\\/12\\@from-large{--gc-start: 6;--gc-end: 12}}@media(max-width: 1199px){.u-gc-6\\/12\\@to-large{--gc-start: 6;--gc-end: 12}}@media(min-width: 1200px){.u-gc-6\\/13\\@from-large{--gc-start: 6;--gc-end: 13}}@media(max-width: 1199px){.u-gc-6\\/13\\@to-large{--gc-start: 6;--gc-end: 13}}@media(min-width: 1200px){.u-gc-7\\/1\\@from-large{--gc-start: 7;--gc-end: 1}}@media(max-width: 1199px){.u-gc-7\\/1\\@to-large{--gc-start: 7;--gc-end: 1}}@media(min-width: 1200px){.u-gc-7\\/2\\@from-large{--gc-start: 7;--gc-end: 2}}@media(max-width: 1199px){.u-gc-7\\/2\\@to-large{--gc-start: 7;--gc-end: 2}}@media(min-width: 1200px){.u-gc-7\\/3\\@from-large{--gc-start: 7;--gc-end: 3}}@media(max-width: 1199px){.u-gc-7\\/3\\@to-large{--gc-start: 7;--gc-end: 3}}@media(min-width: 1200px){.u-gc-7\\/4\\@from-large{--gc-start: 7;--gc-end: 4}}@media(max-width: 1199px){.u-gc-7\\/4\\@to-large{--gc-start: 7;--gc-end: 4}}@media(min-width: 1200px){.u-gc-7\\/5\\@from-large{--gc-start: 7;--gc-end: 5}}@media(max-width: 1199px){.u-gc-7\\/5\\@to-large{--gc-start: 7;--gc-end: 5}}@media(min-width: 1200px){.u-gc-7\\/6\\@from-large{--gc-start: 7;--gc-end: 6}}@media(max-width: 1199px){.u-gc-7\\/6\\@to-large{--gc-start: 7;--gc-end: 6}}@media(min-width: 1200px){.u-gc-7\\/7\\@from-large{--gc-start: 7;--gc-end: 7}}@media(max-width: 1199px){.u-gc-7\\/7\\@to-large{--gc-start: 7;--gc-end: 7}}@media(min-width: 1200px){.u-gc-7\\/8\\@from-large{--gc-start: 7;--gc-end: 8}}@media(max-width: 1199px){.u-gc-7\\/8\\@to-large{--gc-start: 7;--gc-end: 8}}@media(min-width: 1200px){.u-gc-7\\/9\\@from-large{--gc-start: 7;--gc-end: 9}}@media(max-width: 1199px){.u-gc-7\\/9\\@to-large{--gc-start: 7;--gc-end: 9}}@media(min-width: 1200px){.u-gc-7\\/10\\@from-large{--gc-start: 7;--gc-end: 10}}@media(max-width: 1199px){.u-gc-7\\/10\\@to-large{--gc-start: 7;--gc-end: 10}}@media(min-width: 1200px){.u-gc-7\\/11\\@from-large{--gc-start: 7;--gc-end: 11}}@media(max-width: 1199px){.u-gc-7\\/11\\@to-large{--gc-start: 7;--gc-end: 11}}@media(min-width: 1200px){.u-gc-7\\/12\\@from-large{--gc-start: 7;--gc-end: 12}}@media(max-width: 1199px){.u-gc-7\\/12\\@to-large{--gc-start: 7;--gc-end: 12}}@media(min-width: 1200px){.u-gc-7\\/13\\@from-large{--gc-start: 7;--gc-end: 13}}@media(max-width: 1199px){.u-gc-7\\/13\\@to-large{--gc-start: 7;--gc-end: 13}}@media(min-width: 1200px){.u-gc-8\\/1\\@from-large{--gc-start: 8;--gc-end: 1}}@media(max-width: 1199px){.u-gc-8\\/1\\@to-large{--gc-start: 8;--gc-end: 1}}@media(min-width: 1200px){.u-gc-8\\/2\\@from-large{--gc-start: 8;--gc-end: 2}}@media(max-width: 1199px){.u-gc-8\\/2\\@to-large{--gc-start: 8;--gc-end: 2}}@media(min-width: 1200px){.u-gc-8\\/3\\@from-large{--gc-start: 8;--gc-end: 3}}@media(max-width: 1199px){.u-gc-8\\/3\\@to-large{--gc-start: 8;--gc-end: 3}}@media(min-width: 1200px){.u-gc-8\\/4\\@from-large{--gc-start: 8;--gc-end: 4}}@media(max-width: 1199px){.u-gc-8\\/4\\@to-large{--gc-start: 8;--gc-end: 4}}@media(min-width: 1200px){.u-gc-8\\/5\\@from-large{--gc-start: 8;--gc-end: 5}}@media(max-width: 1199px){.u-gc-8\\/5\\@to-large{--gc-start: 8;--gc-end: 5}}@media(min-width: 1200px){.u-gc-8\\/6\\@from-large{--gc-start: 8;--gc-end: 6}}@media(max-width: 1199px){.u-gc-8\\/6\\@to-large{--gc-start: 8;--gc-end: 6}}@media(min-width: 1200px){.u-gc-8\\/7\\@from-large{--gc-start: 8;--gc-end: 7}}@media(max-width: 1199px){.u-gc-8\\/7\\@to-large{--gc-start: 8;--gc-end: 7}}@media(min-width: 1200px){.u-gc-8\\/8\\@from-large{--gc-start: 8;--gc-end: 8}}@media(max-width: 1199px){.u-gc-8\\/8\\@to-large{--gc-start: 8;--gc-end: 8}}@media(min-width: 1200px){.u-gc-8\\/9\\@from-large{--gc-start: 8;--gc-end: 9}}@media(max-width: 1199px){.u-gc-8\\/9\\@to-large{--gc-start: 8;--gc-end: 9}}@media(min-width: 1200px){.u-gc-8\\/10\\@from-large{--gc-start: 8;--gc-end: 10}}@media(max-width: 1199px){.u-gc-8\\/10\\@to-large{--gc-start: 8;--gc-end: 10}}@media(min-width: 1200px){.u-gc-8\\/11\\@from-large{--gc-start: 8;--gc-end: 11}}@media(max-width: 1199px){.u-gc-8\\/11\\@to-large{--gc-start: 8;--gc-end: 11}}@media(min-width: 1200px){.u-gc-8\\/12\\@from-large{--gc-start: 8;--gc-end: 12}}@media(max-width: 1199px){.u-gc-8\\/12\\@to-large{--gc-start: 8;--gc-end: 12}}@media(min-width: 1200px){.u-gc-8\\/13\\@from-large{--gc-start: 8;--gc-end: 13}}@media(max-width: 1199px){.u-gc-8\\/13\\@to-large{--gc-start: 8;--gc-end: 13}}@media(min-width: 1200px){.u-gc-9\\/1\\@from-large{--gc-start: 9;--gc-end: 1}}@media(max-width: 1199px){.u-gc-9\\/1\\@to-large{--gc-start: 9;--gc-end: 1}}@media(min-width: 1200px){.u-gc-9\\/2\\@from-large{--gc-start: 9;--gc-end: 2}}@media(max-width: 1199px){.u-gc-9\\/2\\@to-large{--gc-start: 9;--gc-end: 2}}@media(min-width: 1200px){.u-gc-9\\/3\\@from-large{--gc-start: 9;--gc-end: 3}}@media(max-width: 1199px){.u-gc-9\\/3\\@to-large{--gc-start: 9;--gc-end: 3}}@media(min-width: 1200px){.u-gc-9\\/4\\@from-large{--gc-start: 9;--gc-end: 4}}@media(max-width: 1199px){.u-gc-9\\/4\\@to-large{--gc-start: 9;--gc-end: 4}}@media(min-width: 1200px){.u-gc-9\\/5\\@from-large{--gc-start: 9;--gc-end: 5}}@media(max-width: 1199px){.u-gc-9\\/5\\@to-large{--gc-start: 9;--gc-end: 5}}@media(min-width: 1200px){.u-gc-9\\/6\\@from-large{--gc-start: 9;--gc-end: 6}}@media(max-width: 1199px){.u-gc-9\\/6\\@to-large{--gc-start: 9;--gc-end: 6}}@media(min-width: 1200px){.u-gc-9\\/7\\@from-large{--gc-start: 9;--gc-end: 7}}@media(max-width: 1199px){.u-gc-9\\/7\\@to-large{--gc-start: 9;--gc-end: 7}}@media(min-width: 1200px){.u-gc-9\\/8\\@from-large{--gc-start: 9;--gc-end: 8}}@media(max-width: 1199px){.u-gc-9\\/8\\@to-large{--gc-start: 9;--gc-end: 8}}@media(min-width: 1200px){.u-gc-9\\/9\\@from-large{--gc-start: 9;--gc-end: 9}}@media(max-width: 1199px){.u-gc-9\\/9\\@to-large{--gc-start: 9;--gc-end: 9}}@media(min-width: 1200px){.u-gc-9\\/10\\@from-large{--gc-start: 9;--gc-end: 10}}@media(max-width: 1199px){.u-gc-9\\/10\\@to-large{--gc-start: 9;--gc-end: 10}}@media(min-width: 1200px){.u-gc-9\\/11\\@from-large{--gc-start: 9;--gc-end: 11}}@media(max-width: 1199px){.u-gc-9\\/11\\@to-large{--gc-start: 9;--gc-end: 11}}@media(min-width: 1200px){.u-gc-9\\/12\\@from-large{--gc-start: 9;--gc-end: 12}}@media(max-width: 1199px){.u-gc-9\\/12\\@to-large{--gc-start: 9;--gc-end: 12}}@media(min-width: 1200px){.u-gc-9\\/13\\@from-large{--gc-start: 9;--gc-end: 13}}@media(max-width: 1199px){.u-gc-9\\/13\\@to-large{--gc-start: 9;--gc-end: 13}}@media(min-width: 1200px){.u-gc-10\\/1\\@from-large{--gc-start: 10;--gc-end: 1}}@media(max-width: 1199px){.u-gc-10\\/1\\@to-large{--gc-start: 10;--gc-end: 1}}@media(min-width: 1200px){.u-gc-10\\/2\\@from-large{--gc-start: 10;--gc-end: 2}}@media(max-width: 1199px){.u-gc-10\\/2\\@to-large{--gc-start: 10;--gc-end: 2}}@media(min-width: 1200px){.u-gc-10\\/3\\@from-large{--gc-start: 10;--gc-end: 3}}@media(max-width: 1199px){.u-gc-10\\/3\\@to-large{--gc-start: 10;--gc-end: 3}}@media(min-width: 1200px){.u-gc-10\\/4\\@from-large{--gc-start: 10;--gc-end: 4}}@media(max-width: 1199px){.u-gc-10\\/4\\@to-large{--gc-start: 10;--gc-end: 4}}@media(min-width: 1200px){.u-gc-10\\/5\\@from-large{--gc-start: 10;--gc-end: 5}}@media(max-width: 1199px){.u-gc-10\\/5\\@to-large{--gc-start: 10;--gc-end: 5}}@media(min-width: 1200px){.u-gc-10\\/6\\@from-large{--gc-start: 10;--gc-end: 6}}@media(max-width: 1199px){.u-gc-10\\/6\\@to-large{--gc-start: 10;--gc-end: 6}}@media(min-width: 1200px){.u-gc-10\\/7\\@from-large{--gc-start: 10;--gc-end: 7}}@media(max-width: 1199px){.u-gc-10\\/7\\@to-large{--gc-start: 10;--gc-end: 7}}@media(min-width: 1200px){.u-gc-10\\/8\\@from-large{--gc-start: 10;--gc-end: 8}}@media(max-width: 1199px){.u-gc-10\\/8\\@to-large{--gc-start: 10;--gc-end: 8}}@media(min-width: 1200px){.u-gc-10\\/9\\@from-large{--gc-start: 10;--gc-end: 9}}@media(max-width: 1199px){.u-gc-10\\/9\\@to-large{--gc-start: 10;--gc-end: 9}}@media(min-width: 1200px){.u-gc-10\\/10\\@from-large{--gc-start: 10;--gc-end: 10}}@media(max-width: 1199px){.u-gc-10\\/10\\@to-large{--gc-start: 10;--gc-end: 10}}@media(min-width: 1200px){.u-gc-10\\/11\\@from-large{--gc-start: 10;--gc-end: 11}}@media(max-width: 1199px){.u-gc-10\\/11\\@to-large{--gc-start: 10;--gc-end: 11}}@media(min-width: 1200px){.u-gc-10\\/12\\@from-large{--gc-start: 10;--gc-end: 12}}@media(max-width: 1199px){.u-gc-10\\/12\\@to-large{--gc-start: 10;--gc-end: 12}}@media(min-width: 1200px){.u-gc-10\\/13\\@from-large{--gc-start: 10;--gc-end: 13}}@media(max-width: 1199px){.u-gc-10\\/13\\@to-large{--gc-start: 10;--gc-end: 13}}@media(min-width: 1200px){.u-gc-11\\/1\\@from-large{--gc-start: 11;--gc-end: 1}}@media(max-width: 1199px){.u-gc-11\\/1\\@to-large{--gc-start: 11;--gc-end: 1}}@media(min-width: 1200px){.u-gc-11\\/2\\@from-large{--gc-start: 11;--gc-end: 2}}@media(max-width: 1199px){.u-gc-11\\/2\\@to-large{--gc-start: 11;--gc-end: 2}}@media(min-width: 1200px){.u-gc-11\\/3\\@from-large{--gc-start: 11;--gc-end: 3}}@media(max-width: 1199px){.u-gc-11\\/3\\@to-large{--gc-start: 11;--gc-end: 3}}@media(min-width: 1200px){.u-gc-11\\/4\\@from-large{--gc-start: 11;--gc-end: 4}}@media(max-width: 1199px){.u-gc-11\\/4\\@to-large{--gc-start: 11;--gc-end: 4}}@media(min-width: 1200px){.u-gc-11\\/5\\@from-large{--gc-start: 11;--gc-end: 5}}@media(max-width: 1199px){.u-gc-11\\/5\\@to-large{--gc-start: 11;--gc-end: 5}}@media(min-width: 1200px){.u-gc-11\\/6\\@from-large{--gc-start: 11;--gc-end: 6}}@media(max-width: 1199px){.u-gc-11\\/6\\@to-large{--gc-start: 11;--gc-end: 6}}@media(min-width: 1200px){.u-gc-11\\/7\\@from-large{--gc-start: 11;--gc-end: 7}}@media(max-width: 1199px){.u-gc-11\\/7\\@to-large{--gc-start: 11;--gc-end: 7}}@media(min-width: 1200px){.u-gc-11\\/8\\@from-large{--gc-start: 11;--gc-end: 8}}@media(max-width: 1199px){.u-gc-11\\/8\\@to-large{--gc-start: 11;--gc-end: 8}}@media(min-width: 1200px){.u-gc-11\\/9\\@from-large{--gc-start: 11;--gc-end: 9}}@media(max-width: 1199px){.u-gc-11\\/9\\@to-large{--gc-start: 11;--gc-end: 9}}@media(min-width: 1200px){.u-gc-11\\/10\\@from-large{--gc-start: 11;--gc-end: 10}}@media(max-width: 1199px){.u-gc-11\\/10\\@to-large{--gc-start: 11;--gc-end: 10}}@media(min-width: 1200px){.u-gc-11\\/11\\@from-large{--gc-start: 11;--gc-end: 11}}@media(max-width: 1199px){.u-gc-11\\/11\\@to-large{--gc-start: 11;--gc-end: 11}}@media(min-width: 1200px){.u-gc-11\\/12\\@from-large{--gc-start: 11;--gc-end: 12}}@media(max-width: 1199px){.u-gc-11\\/12\\@to-large{--gc-start: 11;--gc-end: 12}}@media(min-width: 1200px){.u-gc-11\\/13\\@from-large{--gc-start: 11;--gc-end: 13}}@media(max-width: 1199px){.u-gc-11\\/13\\@to-large{--gc-start: 11;--gc-end: 13}}@media(min-width: 1200px){.u-gc-12\\/1\\@from-large{--gc-start: 12;--gc-end: 1}}@media(max-width: 1199px){.u-gc-12\\/1\\@to-large{--gc-start: 12;--gc-end: 1}}@media(min-width: 1200px){.u-gc-12\\/2\\@from-large{--gc-start: 12;--gc-end: 2}}@media(max-width: 1199px){.u-gc-12\\/2\\@to-large{--gc-start: 12;--gc-end: 2}}@media(min-width: 1200px){.u-gc-12\\/3\\@from-large{--gc-start: 12;--gc-end: 3}}@media(max-width: 1199px){.u-gc-12\\/3\\@to-large{--gc-start: 12;--gc-end: 3}}@media(min-width: 1200px){.u-gc-12\\/4\\@from-large{--gc-start: 12;--gc-end: 4}}@media(max-width: 1199px){.u-gc-12\\/4\\@to-large{--gc-start: 12;--gc-end: 4}}@media(min-width: 1200px){.u-gc-12\\/5\\@from-large{--gc-start: 12;--gc-end: 5}}@media(max-width: 1199px){.u-gc-12\\/5\\@to-large{--gc-start: 12;--gc-end: 5}}@media(min-width: 1200px){.u-gc-12\\/6\\@from-large{--gc-start: 12;--gc-end: 6}}@media(max-width: 1199px){.u-gc-12\\/6\\@to-large{--gc-start: 12;--gc-end: 6}}@media(min-width: 1200px){.u-gc-12\\/7\\@from-large{--gc-start: 12;--gc-end: 7}}@media(max-width: 1199px){.u-gc-12\\/7\\@to-large{--gc-start: 12;--gc-end: 7}}@media(min-width: 1200px){.u-gc-12\\/8\\@from-large{--gc-start: 12;--gc-end: 8}}@media(max-width: 1199px){.u-gc-12\\/8\\@to-large{--gc-start: 12;--gc-end: 8}}@media(min-width: 1200px){.u-gc-12\\/9\\@from-large{--gc-start: 12;--gc-end: 9}}@media(max-width: 1199px){.u-gc-12\\/9\\@to-large{--gc-start: 12;--gc-end: 9}}@media(min-width: 1200px){.u-gc-12\\/10\\@from-large{--gc-start: 12;--gc-end: 10}}@media(max-width: 1199px){.u-gc-12\\/10\\@to-large{--gc-start: 12;--gc-end: 10}}@media(min-width: 1200px){.u-gc-12\\/11\\@from-large{--gc-start: 12;--gc-end: 11}}@media(max-width: 1199px){.u-gc-12\\/11\\@to-large{--gc-start: 12;--gc-end: 11}}@media(min-width: 1200px){.u-gc-12\\/12\\@from-large{--gc-start: 12;--gc-end: 12}}@media(max-width: 1199px){.u-gc-12\\/12\\@to-large{--gc-start: 12;--gc-end: 12}}@media(min-width: 1200px){.u-gc-12\\/13\\@from-large{--gc-start: 12;--gc-end: 13}}@media(max-width: 1199px){.u-gc-12\\/13\\@to-large{--gc-start: 12;--gc-end: 13}}@media(min-width: 1200px){.u-gc-13\\/1\\@from-large{--gc-start: 13;--gc-end: 1}}@media(max-width: 1199px){.u-gc-13\\/1\\@to-large{--gc-start: 13;--gc-end: 1}}@media(min-width: 1200px){.u-gc-13\\/2\\@from-large{--gc-start: 13;--gc-end: 2}}@media(max-width: 1199px){.u-gc-13\\/2\\@to-large{--gc-start: 13;--gc-end: 2}}@media(min-width: 1200px){.u-gc-13\\/3\\@from-large{--gc-start: 13;--gc-end: 3}}@media(max-width: 1199px){.u-gc-13\\/3\\@to-large{--gc-start: 13;--gc-end: 3}}@media(min-width: 1200px){.u-gc-13\\/4\\@from-large{--gc-start: 13;--gc-end: 4}}@media(max-width: 1199px){.u-gc-13\\/4\\@to-large{--gc-start: 13;--gc-end: 4}}@media(min-width: 1200px){.u-gc-13\\/5\\@from-large{--gc-start: 13;--gc-end: 5}}@media(max-width: 1199px){.u-gc-13\\/5\\@to-large{--gc-start: 13;--gc-end: 5}}@media(min-width: 1200px){.u-gc-13\\/6\\@from-large{--gc-start: 13;--gc-end: 6}}@media(max-width: 1199px){.u-gc-13\\/6\\@to-large{--gc-start: 13;--gc-end: 6}}@media(min-width: 1200px){.u-gc-13\\/7\\@from-large{--gc-start: 13;--gc-end: 7}}@media(max-width: 1199px){.u-gc-13\\/7\\@to-large{--gc-start: 13;--gc-end: 7}}@media(min-width: 1200px){.u-gc-13\\/8\\@from-large{--gc-start: 13;--gc-end: 8}}@media(max-width: 1199px){.u-gc-13\\/8\\@to-large{--gc-start: 13;--gc-end: 8}}@media(min-width: 1200px){.u-gc-13\\/9\\@from-large{--gc-start: 13;--gc-end: 9}}@media(max-width: 1199px){.u-gc-13\\/9\\@to-large{--gc-start: 13;--gc-end: 9}}@media(min-width: 1200px){.u-gc-13\\/10\\@from-large{--gc-start: 13;--gc-end: 10}}@media(max-width: 1199px){.u-gc-13\\/10\\@to-large{--gc-start: 13;--gc-end: 10}}@media(min-width: 1200px){.u-gc-13\\/11\\@from-large{--gc-start: 13;--gc-end: 11}}@media(max-width: 1199px){.u-gc-13\\/11\\@to-large{--gc-start: 13;--gc-end: 11}}@media(min-width: 1200px){.u-gc-13\\/12\\@from-large{--gc-start: 13;--gc-end: 12}}@media(max-width: 1199px){.u-gc-13\\/12\\@to-large{--gc-start: 13;--gc-end: 12}}@media(min-width: 1200px){.u-gc-13\\/13\\@from-large{--gc-start: 13;--gc-end: 13}}@media(max-width: 1199px){.u-gc-13\\/13\\@to-large{--gc-start: 13;--gc-end: 13}}@media(min-width: 1400px){.u-gc-1\\/1\\@from-big{--gc-start: 1;--gc-end: 1}}@media(max-width: 1399px){.u-gc-1\\/1\\@to-big{--gc-start: 1;--gc-end: 1}}@media(min-width: 1400px){.u-gc-1\\/2\\@from-big{--gc-start: 1;--gc-end: 2}}@media(max-width: 1399px){.u-gc-1\\/2\\@to-big{--gc-start: 1;--gc-end: 2}}@media(min-width: 1400px){.u-gc-1\\/3\\@from-big{--gc-start: 1;--gc-end: 3}}@media(max-width: 1399px){.u-gc-1\\/3\\@to-big{--gc-start: 1;--gc-end: 3}}@media(min-width: 1400px){.u-gc-1\\/4\\@from-big{--gc-start: 1;--gc-end: 4}}@media(max-width: 1399px){.u-gc-1\\/4\\@to-big{--gc-start: 1;--gc-end: 4}}@media(min-width: 1400px){.u-gc-1\\/5\\@from-big{--gc-start: 1;--gc-end: 5}}@media(max-width: 1399px){.u-gc-1\\/5\\@to-big{--gc-start: 1;--gc-end: 5}}@media(min-width: 1400px){.u-gc-1\\/6\\@from-big{--gc-start: 1;--gc-end: 6}}@media(max-width: 1399px){.u-gc-1\\/6\\@to-big{--gc-start: 1;--gc-end: 6}}@media(min-width: 1400px){.u-gc-1\\/7\\@from-big{--gc-start: 1;--gc-end: 7}}@media(max-width: 1399px){.u-gc-1\\/7\\@to-big{--gc-start: 1;--gc-end: 7}}@media(min-width: 1400px){.u-gc-1\\/8\\@from-big{--gc-start: 1;--gc-end: 8}}@media(max-width: 1399px){.u-gc-1\\/8\\@to-big{--gc-start: 1;--gc-end: 8}}@media(min-width: 1400px){.u-gc-1\\/9\\@from-big{--gc-start: 1;--gc-end: 9}}@media(max-width: 1399px){.u-gc-1\\/9\\@to-big{--gc-start: 1;--gc-end: 9}}@media(min-width: 1400px){.u-gc-1\\/10\\@from-big{--gc-start: 1;--gc-end: 10}}@media(max-width: 1399px){.u-gc-1\\/10\\@to-big{--gc-start: 1;--gc-end: 10}}@media(min-width: 1400px){.u-gc-1\\/11\\@from-big{--gc-start: 1;--gc-end: 11}}@media(max-width: 1399px){.u-gc-1\\/11\\@to-big{--gc-start: 1;--gc-end: 11}}@media(min-width: 1400px){.u-gc-1\\/12\\@from-big{--gc-start: 1;--gc-end: 12}}@media(max-width: 1399px){.u-gc-1\\/12\\@to-big{--gc-start: 1;--gc-end: 12}}@media(min-width: 1400px){.u-gc-1\\/13\\@from-big{--gc-start: 1;--gc-end: 13}}@media(max-width: 1399px){.u-gc-1\\/13\\@to-big{--gc-start: 1;--gc-end: 13}}@media(min-width: 1400px){.u-gc-2\\/1\\@from-big{--gc-start: 2;--gc-end: 1}}@media(max-width: 1399px){.u-gc-2\\/1\\@to-big{--gc-start: 2;--gc-end: 1}}@media(min-width: 1400px){.u-gc-2\\/2\\@from-big{--gc-start: 2;--gc-end: 2}}@media(max-width: 1399px){.u-gc-2\\/2\\@to-big{--gc-start: 2;--gc-end: 2}}@media(min-width: 1400px){.u-gc-2\\/3\\@from-big{--gc-start: 2;--gc-end: 3}}@media(max-width: 1399px){.u-gc-2\\/3\\@to-big{--gc-start: 2;--gc-end: 3}}@media(min-width: 1400px){.u-gc-2\\/4\\@from-big{--gc-start: 2;--gc-end: 4}}@media(max-width: 1399px){.u-gc-2\\/4\\@to-big{--gc-start: 2;--gc-end: 4}}@media(min-width: 1400px){.u-gc-2\\/5\\@from-big{--gc-start: 2;--gc-end: 5}}@media(max-width: 1399px){.u-gc-2\\/5\\@to-big{--gc-start: 2;--gc-end: 5}}@media(min-width: 1400px){.u-gc-2\\/6\\@from-big{--gc-start: 2;--gc-end: 6}}@media(max-width: 1399px){.u-gc-2\\/6\\@to-big{--gc-start: 2;--gc-end: 6}}@media(min-width: 1400px){.u-gc-2\\/7\\@from-big{--gc-start: 2;--gc-end: 7}}@media(max-width: 1399px){.u-gc-2\\/7\\@to-big{--gc-start: 2;--gc-end: 7}}@media(min-width: 1400px){.u-gc-2\\/8\\@from-big{--gc-start: 2;--gc-end: 8}}@media(max-width: 1399px){.u-gc-2\\/8\\@to-big{--gc-start: 2;--gc-end: 8}}@media(min-width: 1400px){.u-gc-2\\/9\\@from-big{--gc-start: 2;--gc-end: 9}}@media(max-width: 1399px){.u-gc-2\\/9\\@to-big{--gc-start: 2;--gc-end: 9}}@media(min-width: 1400px){.u-gc-2\\/10\\@from-big{--gc-start: 2;--gc-end: 10}}@media(max-width: 1399px){.u-gc-2\\/10\\@to-big{--gc-start: 2;--gc-end: 10}}@media(min-width: 1400px){.u-gc-2\\/11\\@from-big{--gc-start: 2;--gc-end: 11}}@media(max-width: 1399px){.u-gc-2\\/11\\@to-big{--gc-start: 2;--gc-end: 11}}@media(min-width: 1400px){.u-gc-2\\/12\\@from-big{--gc-start: 2;--gc-end: 12}}@media(max-width: 1399px){.u-gc-2\\/12\\@to-big{--gc-start: 2;--gc-end: 12}}@media(min-width: 1400px){.u-gc-2\\/13\\@from-big{--gc-start: 2;--gc-end: 13}}@media(max-width: 1399px){.u-gc-2\\/13\\@to-big{--gc-start: 2;--gc-end: 13}}@media(min-width: 1400px){.u-gc-3\\/1\\@from-big{--gc-start: 3;--gc-end: 1}}@media(max-width: 1399px){.u-gc-3\\/1\\@to-big{--gc-start: 3;--gc-end: 1}}@media(min-width: 1400px){.u-gc-3\\/2\\@from-big{--gc-start: 3;--gc-end: 2}}@media(max-width: 1399px){.u-gc-3\\/2\\@to-big{--gc-start: 3;--gc-end: 2}}@media(min-width: 1400px){.u-gc-3\\/3\\@from-big{--gc-start: 3;--gc-end: 3}}@media(max-width: 1399px){.u-gc-3\\/3\\@to-big{--gc-start: 3;--gc-end: 3}}@media(min-width: 1400px){.u-gc-3\\/4\\@from-big{--gc-start: 3;--gc-end: 4}}@media(max-width: 1399px){.u-gc-3\\/4\\@to-big{--gc-start: 3;--gc-end: 4}}@media(min-width: 1400px){.u-gc-3\\/5\\@from-big{--gc-start: 3;--gc-end: 5}}@media(max-width: 1399px){.u-gc-3\\/5\\@to-big{--gc-start: 3;--gc-end: 5}}@media(min-width: 1400px){.u-gc-3\\/6\\@from-big{--gc-start: 3;--gc-end: 6}}@media(max-width: 1399px){.u-gc-3\\/6\\@to-big{--gc-start: 3;--gc-end: 6}}@media(min-width: 1400px){.u-gc-3\\/7\\@from-big{--gc-start: 3;--gc-end: 7}}@media(max-width: 1399px){.u-gc-3\\/7\\@to-big{--gc-start: 3;--gc-end: 7}}@media(min-width: 1400px){.u-gc-3\\/8\\@from-big{--gc-start: 3;--gc-end: 8}}@media(max-width: 1399px){.u-gc-3\\/8\\@to-big{--gc-start: 3;--gc-end: 8}}@media(min-width: 1400px){.u-gc-3\\/9\\@from-big{--gc-start: 3;--gc-end: 9}}@media(max-width: 1399px){.u-gc-3\\/9\\@to-big{--gc-start: 3;--gc-end: 9}}@media(min-width: 1400px){.u-gc-3\\/10\\@from-big{--gc-start: 3;--gc-end: 10}}@media(max-width: 1399px){.u-gc-3\\/10\\@to-big{--gc-start: 3;--gc-end: 10}}@media(min-width: 1400px){.u-gc-3\\/11\\@from-big{--gc-start: 3;--gc-end: 11}}@media(max-width: 1399px){.u-gc-3\\/11\\@to-big{--gc-start: 3;--gc-end: 11}}@media(min-width: 1400px){.u-gc-3\\/12\\@from-big{--gc-start: 3;--gc-end: 12}}@media(max-width: 1399px){.u-gc-3\\/12\\@to-big{--gc-start: 3;--gc-end: 12}}@media(min-width: 1400px){.u-gc-3\\/13\\@from-big{--gc-start: 3;--gc-end: 13}}@media(max-width: 1399px){.u-gc-3\\/13\\@to-big{--gc-start: 3;--gc-end: 13}}@media(min-width: 1400px){.u-gc-4\\/1\\@from-big{--gc-start: 4;--gc-end: 1}}@media(max-width: 1399px){.u-gc-4\\/1\\@to-big{--gc-start: 4;--gc-end: 1}}@media(min-width: 1400px){.u-gc-4\\/2\\@from-big{--gc-start: 4;--gc-end: 2}}@media(max-width: 1399px){.u-gc-4\\/2\\@to-big{--gc-start: 4;--gc-end: 2}}@media(min-width: 1400px){.u-gc-4\\/3\\@from-big{--gc-start: 4;--gc-end: 3}}@media(max-width: 1399px){.u-gc-4\\/3\\@to-big{--gc-start: 4;--gc-end: 3}}@media(min-width: 1400px){.u-gc-4\\/4\\@from-big{--gc-start: 4;--gc-end: 4}}@media(max-width: 1399px){.u-gc-4\\/4\\@to-big{--gc-start: 4;--gc-end: 4}}@media(min-width: 1400px){.u-gc-4\\/5\\@from-big{--gc-start: 4;--gc-end: 5}}@media(max-width: 1399px){.u-gc-4\\/5\\@to-big{--gc-start: 4;--gc-end: 5}}@media(min-width: 1400px){.u-gc-4\\/6\\@from-big{--gc-start: 4;--gc-end: 6}}@media(max-width: 1399px){.u-gc-4\\/6\\@to-big{--gc-start: 4;--gc-end: 6}}@media(min-width: 1400px){.u-gc-4\\/7\\@from-big{--gc-start: 4;--gc-end: 7}}@media(max-width: 1399px){.u-gc-4\\/7\\@to-big{--gc-start: 4;--gc-end: 7}}@media(min-width: 1400px){.u-gc-4\\/8\\@from-big{--gc-start: 4;--gc-end: 8}}@media(max-width: 1399px){.u-gc-4\\/8\\@to-big{--gc-start: 4;--gc-end: 8}}@media(min-width: 1400px){.u-gc-4\\/9\\@from-big{--gc-start: 4;--gc-end: 9}}@media(max-width: 1399px){.u-gc-4\\/9\\@to-big{--gc-start: 4;--gc-end: 9}}@media(min-width: 1400px){.u-gc-4\\/10\\@from-big{--gc-start: 4;--gc-end: 10}}@media(max-width: 1399px){.u-gc-4\\/10\\@to-big{--gc-start: 4;--gc-end: 10}}@media(min-width: 1400px){.u-gc-4\\/11\\@from-big{--gc-start: 4;--gc-end: 11}}@media(max-width: 1399px){.u-gc-4\\/11\\@to-big{--gc-start: 4;--gc-end: 11}}@media(min-width: 1400px){.u-gc-4\\/12\\@from-big{--gc-start: 4;--gc-end: 12}}@media(max-width: 1399px){.u-gc-4\\/12\\@to-big{--gc-start: 4;--gc-end: 12}}@media(min-width: 1400px){.u-gc-4\\/13\\@from-big{--gc-start: 4;--gc-end: 13}}@media(max-width: 1399px){.u-gc-4\\/13\\@to-big{--gc-start: 4;--gc-end: 13}}@media(min-width: 1400px){.u-gc-5\\/1\\@from-big{--gc-start: 5;--gc-end: 1}}@media(max-width: 1399px){.u-gc-5\\/1\\@to-big{--gc-start: 5;--gc-end: 1}}@media(min-width: 1400px){.u-gc-5\\/2\\@from-big{--gc-start: 5;--gc-end: 2}}@media(max-width: 1399px){.u-gc-5\\/2\\@to-big{--gc-start: 5;--gc-end: 2}}@media(min-width: 1400px){.u-gc-5\\/3\\@from-big{--gc-start: 5;--gc-end: 3}}@media(max-width: 1399px){.u-gc-5\\/3\\@to-big{--gc-start: 5;--gc-end: 3}}@media(min-width: 1400px){.u-gc-5\\/4\\@from-big{--gc-start: 5;--gc-end: 4}}@media(max-width: 1399px){.u-gc-5\\/4\\@to-big{--gc-start: 5;--gc-end: 4}}@media(min-width: 1400px){.u-gc-5\\/5\\@from-big{--gc-start: 5;--gc-end: 5}}@media(max-width: 1399px){.u-gc-5\\/5\\@to-big{--gc-start: 5;--gc-end: 5}}@media(min-width: 1400px){.u-gc-5\\/6\\@from-big{--gc-start: 5;--gc-end: 6}}@media(max-width: 1399px){.u-gc-5\\/6\\@to-big{--gc-start: 5;--gc-end: 6}}@media(min-width: 1400px){.u-gc-5\\/7\\@from-big{--gc-start: 5;--gc-end: 7}}@media(max-width: 1399px){.u-gc-5\\/7\\@to-big{--gc-start: 5;--gc-end: 7}}@media(min-width: 1400px){.u-gc-5\\/8\\@from-big{--gc-start: 5;--gc-end: 8}}@media(max-width: 1399px){.u-gc-5\\/8\\@to-big{--gc-start: 5;--gc-end: 8}}@media(min-width: 1400px){.u-gc-5\\/9\\@from-big{--gc-start: 5;--gc-end: 9}}@media(max-width: 1399px){.u-gc-5\\/9\\@to-big{--gc-start: 5;--gc-end: 9}}@media(min-width: 1400px){.u-gc-5\\/10\\@from-big{--gc-start: 5;--gc-end: 10}}@media(max-width: 1399px){.u-gc-5\\/10\\@to-big{--gc-start: 5;--gc-end: 10}}@media(min-width: 1400px){.u-gc-5\\/11\\@from-big{--gc-start: 5;--gc-end: 11}}@media(max-width: 1399px){.u-gc-5\\/11\\@to-big{--gc-start: 5;--gc-end: 11}}@media(min-width: 1400px){.u-gc-5\\/12\\@from-big{--gc-start: 5;--gc-end: 12}}@media(max-width: 1399px){.u-gc-5\\/12\\@to-big{--gc-start: 5;--gc-end: 12}}@media(min-width: 1400px){.u-gc-5\\/13\\@from-big{--gc-start: 5;--gc-end: 13}}@media(max-width: 1399px){.u-gc-5\\/13\\@to-big{--gc-start: 5;--gc-end: 13}}@media(min-width: 1400px){.u-gc-6\\/1\\@from-big{--gc-start: 6;--gc-end: 1}}@media(max-width: 1399px){.u-gc-6\\/1\\@to-big{--gc-start: 6;--gc-end: 1}}@media(min-width: 1400px){.u-gc-6\\/2\\@from-big{--gc-start: 6;--gc-end: 2}}@media(max-width: 1399px){.u-gc-6\\/2\\@to-big{--gc-start: 6;--gc-end: 2}}@media(min-width: 1400px){.u-gc-6\\/3\\@from-big{--gc-start: 6;--gc-end: 3}}@media(max-width: 1399px){.u-gc-6\\/3\\@to-big{--gc-start: 6;--gc-end: 3}}@media(min-width: 1400px){.u-gc-6\\/4\\@from-big{--gc-start: 6;--gc-end: 4}}@media(max-width: 1399px){.u-gc-6\\/4\\@to-big{--gc-start: 6;--gc-end: 4}}@media(min-width: 1400px){.u-gc-6\\/5\\@from-big{--gc-start: 6;--gc-end: 5}}@media(max-width: 1399px){.u-gc-6\\/5\\@to-big{--gc-start: 6;--gc-end: 5}}@media(min-width: 1400px){.u-gc-6\\/6\\@from-big{--gc-start: 6;--gc-end: 6}}@media(max-width: 1399px){.u-gc-6\\/6\\@to-big{--gc-start: 6;--gc-end: 6}}@media(min-width: 1400px){.u-gc-6\\/7\\@from-big{--gc-start: 6;--gc-end: 7}}@media(max-width: 1399px){.u-gc-6\\/7\\@to-big{--gc-start: 6;--gc-end: 7}}@media(min-width: 1400px){.u-gc-6\\/8\\@from-big{--gc-start: 6;--gc-end: 8}}@media(max-width: 1399px){.u-gc-6\\/8\\@to-big{--gc-start: 6;--gc-end: 8}}@media(min-width: 1400px){.u-gc-6\\/9\\@from-big{--gc-start: 6;--gc-end: 9}}@media(max-width: 1399px){.u-gc-6\\/9\\@to-big{--gc-start: 6;--gc-end: 9}}@media(min-width: 1400px){.u-gc-6\\/10\\@from-big{--gc-start: 6;--gc-end: 10}}@media(max-width: 1399px){.u-gc-6\\/10\\@to-big{--gc-start: 6;--gc-end: 10}}@media(min-width: 1400px){.u-gc-6\\/11\\@from-big{--gc-start: 6;--gc-end: 11}}@media(max-width: 1399px){.u-gc-6\\/11\\@to-big{--gc-start: 6;--gc-end: 11}}@media(min-width: 1400px){.u-gc-6\\/12\\@from-big{--gc-start: 6;--gc-end: 12}}@media(max-width: 1399px){.u-gc-6\\/12\\@to-big{--gc-start: 6;--gc-end: 12}}@media(min-width: 1400px){.u-gc-6\\/13\\@from-big{--gc-start: 6;--gc-end: 13}}@media(max-width: 1399px){.u-gc-6\\/13\\@to-big{--gc-start: 6;--gc-end: 13}}@media(min-width: 1400px){.u-gc-7\\/1\\@from-big{--gc-start: 7;--gc-end: 1}}@media(max-width: 1399px){.u-gc-7\\/1\\@to-big{--gc-start: 7;--gc-end: 1}}@media(min-width: 1400px){.u-gc-7\\/2\\@from-big{--gc-start: 7;--gc-end: 2}}@media(max-width: 1399px){.u-gc-7\\/2\\@to-big{--gc-start: 7;--gc-end: 2}}@media(min-width: 1400px){.u-gc-7\\/3\\@from-big{--gc-start: 7;--gc-end: 3}}@media(max-width: 1399px){.u-gc-7\\/3\\@to-big{--gc-start: 7;--gc-end: 3}}@media(min-width: 1400px){.u-gc-7\\/4\\@from-big{--gc-start: 7;--gc-end: 4}}@media(max-width: 1399px){.u-gc-7\\/4\\@to-big{--gc-start: 7;--gc-end: 4}}@media(min-width: 1400px){.u-gc-7\\/5\\@from-big{--gc-start: 7;--gc-end: 5}}@media(max-width: 1399px){.u-gc-7\\/5\\@to-big{--gc-start: 7;--gc-end: 5}}@media(min-width: 1400px){.u-gc-7\\/6\\@from-big{--gc-start: 7;--gc-end: 6}}@media(max-width: 1399px){.u-gc-7\\/6\\@to-big{--gc-start: 7;--gc-end: 6}}@media(min-width: 1400px){.u-gc-7\\/7\\@from-big{--gc-start: 7;--gc-end: 7}}@media(max-width: 1399px){.u-gc-7\\/7\\@to-big{--gc-start: 7;--gc-end: 7}}@media(min-width: 1400px){.u-gc-7\\/8\\@from-big{--gc-start: 7;--gc-end: 8}}@media(max-width: 1399px){.u-gc-7\\/8\\@to-big{--gc-start: 7;--gc-end: 8}}@media(min-width: 1400px){.u-gc-7\\/9\\@from-big{--gc-start: 7;--gc-end: 9}}@media(max-width: 1399px){.u-gc-7\\/9\\@to-big{--gc-start: 7;--gc-end: 9}}@media(min-width: 1400px){.u-gc-7\\/10\\@from-big{--gc-start: 7;--gc-end: 10}}@media(max-width: 1399px){.u-gc-7\\/10\\@to-big{--gc-start: 7;--gc-end: 10}}@media(min-width: 1400px){.u-gc-7\\/11\\@from-big{--gc-start: 7;--gc-end: 11}}@media(max-width: 1399px){.u-gc-7\\/11\\@to-big{--gc-start: 7;--gc-end: 11}}@media(min-width: 1400px){.u-gc-7\\/12\\@from-big{--gc-start: 7;--gc-end: 12}}@media(max-width: 1399px){.u-gc-7\\/12\\@to-big{--gc-start: 7;--gc-end: 12}}@media(min-width: 1400px){.u-gc-7\\/13\\@from-big{--gc-start: 7;--gc-end: 13}}@media(max-width: 1399px){.u-gc-7\\/13\\@to-big{--gc-start: 7;--gc-end: 13}}@media(min-width: 1400px){.u-gc-8\\/1\\@from-big{--gc-start: 8;--gc-end: 1}}@media(max-width: 1399px){.u-gc-8\\/1\\@to-big{--gc-start: 8;--gc-end: 1}}@media(min-width: 1400px){.u-gc-8\\/2\\@from-big{--gc-start: 8;--gc-end: 2}}@media(max-width: 1399px){.u-gc-8\\/2\\@to-big{--gc-start: 8;--gc-end: 2}}@media(min-width: 1400px){.u-gc-8\\/3\\@from-big{--gc-start: 8;--gc-end: 3}}@media(max-width: 1399px){.u-gc-8\\/3\\@to-big{--gc-start: 8;--gc-end: 3}}@media(min-width: 1400px){.u-gc-8\\/4\\@from-big{--gc-start: 8;--gc-end: 4}}@media(max-width: 1399px){.u-gc-8\\/4\\@to-big{--gc-start: 8;--gc-end: 4}}@media(min-width: 1400px){.u-gc-8\\/5\\@from-big{--gc-start: 8;--gc-end: 5}}@media(max-width: 1399px){.u-gc-8\\/5\\@to-big{--gc-start: 8;--gc-end: 5}}@media(min-width: 1400px){.u-gc-8\\/6\\@from-big{--gc-start: 8;--gc-end: 6}}@media(max-width: 1399px){.u-gc-8\\/6\\@to-big{--gc-start: 8;--gc-end: 6}}@media(min-width: 1400px){.u-gc-8\\/7\\@from-big{--gc-start: 8;--gc-end: 7}}@media(max-width: 1399px){.u-gc-8\\/7\\@to-big{--gc-start: 8;--gc-end: 7}}@media(min-width: 1400px){.u-gc-8\\/8\\@from-big{--gc-start: 8;--gc-end: 8}}@media(max-width: 1399px){.u-gc-8\\/8\\@to-big{--gc-start: 8;--gc-end: 8}}@media(min-width: 1400px){.u-gc-8\\/9\\@from-big{--gc-start: 8;--gc-end: 9}}@media(max-width: 1399px){.u-gc-8\\/9\\@to-big{--gc-start: 8;--gc-end: 9}}@media(min-width: 1400px){.u-gc-8\\/10\\@from-big{--gc-start: 8;--gc-end: 10}}@media(max-width: 1399px){.u-gc-8\\/10\\@to-big{--gc-start: 8;--gc-end: 10}}@media(min-width: 1400px){.u-gc-8\\/11\\@from-big{--gc-start: 8;--gc-end: 11}}@media(max-width: 1399px){.u-gc-8\\/11\\@to-big{--gc-start: 8;--gc-end: 11}}@media(min-width: 1400px){.u-gc-8\\/12\\@from-big{--gc-start: 8;--gc-end: 12}}@media(max-width: 1399px){.u-gc-8\\/12\\@to-big{--gc-start: 8;--gc-end: 12}}@media(min-width: 1400px){.u-gc-8\\/13\\@from-big{--gc-start: 8;--gc-end: 13}}@media(max-width: 1399px){.u-gc-8\\/13\\@to-big{--gc-start: 8;--gc-end: 13}}@media(min-width: 1400px){.u-gc-9\\/1\\@from-big{--gc-start: 9;--gc-end: 1}}@media(max-width: 1399px){.u-gc-9\\/1\\@to-big{--gc-start: 9;--gc-end: 1}}@media(min-width: 1400px){.u-gc-9\\/2\\@from-big{--gc-start: 9;--gc-end: 2}}@media(max-width: 1399px){.u-gc-9\\/2\\@to-big{--gc-start: 9;--gc-end: 2}}@media(min-width: 1400px){.u-gc-9\\/3\\@from-big{--gc-start: 9;--gc-end: 3}}@media(max-width: 1399px){.u-gc-9\\/3\\@to-big{--gc-start: 9;--gc-end: 3}}@media(min-width: 1400px){.u-gc-9\\/4\\@from-big{--gc-start: 9;--gc-end: 4}}@media(max-width: 1399px){.u-gc-9\\/4\\@to-big{--gc-start: 9;--gc-end: 4}}@media(min-width: 1400px){.u-gc-9\\/5\\@from-big{--gc-start: 9;--gc-end: 5}}@media(max-width: 1399px){.u-gc-9\\/5\\@to-big{--gc-start: 9;--gc-end: 5}}@media(min-width: 1400px){.u-gc-9\\/6\\@from-big{--gc-start: 9;--gc-end: 6}}@media(max-width: 1399px){.u-gc-9\\/6\\@to-big{--gc-start: 9;--gc-end: 6}}@media(min-width: 1400px){.u-gc-9\\/7\\@from-big{--gc-start: 9;--gc-end: 7}}@media(max-width: 1399px){.u-gc-9\\/7\\@to-big{--gc-start: 9;--gc-end: 7}}@media(min-width: 1400px){.u-gc-9\\/8\\@from-big{--gc-start: 9;--gc-end: 8}}@media(max-width: 1399px){.u-gc-9\\/8\\@to-big{--gc-start: 9;--gc-end: 8}}@media(min-width: 1400px){.u-gc-9\\/9\\@from-big{--gc-start: 9;--gc-end: 9}}@media(max-width: 1399px){.u-gc-9\\/9\\@to-big{--gc-start: 9;--gc-end: 9}}@media(min-width: 1400px){.u-gc-9\\/10\\@from-big{--gc-start: 9;--gc-end: 10}}@media(max-width: 1399px){.u-gc-9\\/10\\@to-big{--gc-start: 9;--gc-end: 10}}@media(min-width: 1400px){.u-gc-9\\/11\\@from-big{--gc-start: 9;--gc-end: 11}}@media(max-width: 1399px){.u-gc-9\\/11\\@to-big{--gc-start: 9;--gc-end: 11}}@media(min-width: 1400px){.u-gc-9\\/12\\@from-big{--gc-start: 9;--gc-end: 12}}@media(max-width: 1399px){.u-gc-9\\/12\\@to-big{--gc-start: 9;--gc-end: 12}}@media(min-width: 1400px){.u-gc-9\\/13\\@from-big{--gc-start: 9;--gc-end: 13}}@media(max-width: 1399px){.u-gc-9\\/13\\@to-big{--gc-start: 9;--gc-end: 13}}@media(min-width: 1400px){.u-gc-10\\/1\\@from-big{--gc-start: 10;--gc-end: 1}}@media(max-width: 1399px){.u-gc-10\\/1\\@to-big{--gc-start: 10;--gc-end: 1}}@media(min-width: 1400px){.u-gc-10\\/2\\@from-big{--gc-start: 10;--gc-end: 2}}@media(max-width: 1399px){.u-gc-10\\/2\\@to-big{--gc-start: 10;--gc-end: 2}}@media(min-width: 1400px){.u-gc-10\\/3\\@from-big{--gc-start: 10;--gc-end: 3}}@media(max-width: 1399px){.u-gc-10\\/3\\@to-big{--gc-start: 10;--gc-end: 3}}@media(min-width: 1400px){.u-gc-10\\/4\\@from-big{--gc-start: 10;--gc-end: 4}}@media(max-width: 1399px){.u-gc-10\\/4\\@to-big{--gc-start: 10;--gc-end: 4}}@media(min-width: 1400px){.u-gc-10\\/5\\@from-big{--gc-start: 10;--gc-end: 5}}@media(max-width: 1399px){.u-gc-10\\/5\\@to-big{--gc-start: 10;--gc-end: 5}}@media(min-width: 1400px){.u-gc-10\\/6\\@from-big{--gc-start: 10;--gc-end: 6}}@media(max-width: 1399px){.u-gc-10\\/6\\@to-big{--gc-start: 10;--gc-end: 6}}@media(min-width: 1400px){.u-gc-10\\/7\\@from-big{--gc-start: 10;--gc-end: 7}}@media(max-width: 1399px){.u-gc-10\\/7\\@to-big{--gc-start: 10;--gc-end: 7}}@media(min-width: 1400px){.u-gc-10\\/8\\@from-big{--gc-start: 10;--gc-end: 8}}@media(max-width: 1399px){.u-gc-10\\/8\\@to-big{--gc-start: 10;--gc-end: 8}}@media(min-width: 1400px){.u-gc-10\\/9\\@from-big{--gc-start: 10;--gc-end: 9}}@media(max-width: 1399px){.u-gc-10\\/9\\@to-big{--gc-start: 10;--gc-end: 9}}@media(min-width: 1400px){.u-gc-10\\/10\\@from-big{--gc-start: 10;--gc-end: 10}}@media(max-width: 1399px){.u-gc-10\\/10\\@to-big{--gc-start: 10;--gc-end: 10}}@media(min-width: 1400px){.u-gc-10\\/11\\@from-big{--gc-start: 10;--gc-end: 11}}@media(max-width: 1399px){.u-gc-10\\/11\\@to-big{--gc-start: 10;--gc-end: 11}}@media(min-width: 1400px){.u-gc-10\\/12\\@from-big{--gc-start: 10;--gc-end: 12}}@media(max-width: 1399px){.u-gc-10\\/12\\@to-big{--gc-start: 10;--gc-end: 12}}@media(min-width: 1400px){.u-gc-10\\/13\\@from-big{--gc-start: 10;--gc-end: 13}}@media(max-width: 1399px){.u-gc-10\\/13\\@to-big{--gc-start: 10;--gc-end: 13}}@media(min-width: 1400px){.u-gc-11\\/1\\@from-big{--gc-start: 11;--gc-end: 1}}@media(max-width: 1399px){.u-gc-11\\/1\\@to-big{--gc-start: 11;--gc-end: 1}}@media(min-width: 1400px){.u-gc-11\\/2\\@from-big{--gc-start: 11;--gc-end: 2}}@media(max-width: 1399px){.u-gc-11\\/2\\@to-big{--gc-start: 11;--gc-end: 2}}@media(min-width: 1400px){.u-gc-11\\/3\\@from-big{--gc-start: 11;--gc-end: 3}}@media(max-width: 1399px){.u-gc-11\\/3\\@to-big{--gc-start: 11;--gc-end: 3}}@media(min-width: 1400px){.u-gc-11\\/4\\@from-big{--gc-start: 11;--gc-end: 4}}@media(max-width: 1399px){.u-gc-11\\/4\\@to-big{--gc-start: 11;--gc-end: 4}}@media(min-width: 1400px){.u-gc-11\\/5\\@from-big{--gc-start: 11;--gc-end: 5}}@media(max-width: 1399px){.u-gc-11\\/5\\@to-big{--gc-start: 11;--gc-end: 5}}@media(min-width: 1400px){.u-gc-11\\/6\\@from-big{--gc-start: 11;--gc-end: 6}}@media(max-width: 1399px){.u-gc-11\\/6\\@to-big{--gc-start: 11;--gc-end: 6}}@media(min-width: 1400px){.u-gc-11\\/7\\@from-big{--gc-start: 11;--gc-end: 7}}@media(max-width: 1399px){.u-gc-11\\/7\\@to-big{--gc-start: 11;--gc-end: 7}}@media(min-width: 1400px){.u-gc-11\\/8\\@from-big{--gc-start: 11;--gc-end: 8}}@media(max-width: 1399px){.u-gc-11\\/8\\@to-big{--gc-start: 11;--gc-end: 8}}@media(min-width: 1400px){.u-gc-11\\/9\\@from-big{--gc-start: 11;--gc-end: 9}}@media(max-width: 1399px){.u-gc-11\\/9\\@to-big{--gc-start: 11;--gc-end: 9}}@media(min-width: 1400px){.u-gc-11\\/10\\@from-big{--gc-start: 11;--gc-end: 10}}@media(max-width: 1399px){.u-gc-11\\/10\\@to-big{--gc-start: 11;--gc-end: 10}}@media(min-width: 1400px){.u-gc-11\\/11\\@from-big{--gc-start: 11;--gc-end: 11}}@media(max-width: 1399px){.u-gc-11\\/11\\@to-big{--gc-start: 11;--gc-end: 11}}@media(min-width: 1400px){.u-gc-11\\/12\\@from-big{--gc-start: 11;--gc-end: 12}}@media(max-width: 1399px){.u-gc-11\\/12\\@to-big{--gc-start: 11;--gc-end: 12}}@media(min-width: 1400px){.u-gc-11\\/13\\@from-big{--gc-start: 11;--gc-end: 13}}@media(max-width: 1399px){.u-gc-11\\/13\\@to-big{--gc-start: 11;--gc-end: 13}}@media(min-width: 1400px){.u-gc-12\\/1\\@from-big{--gc-start: 12;--gc-end: 1}}@media(max-width: 1399px){.u-gc-12\\/1\\@to-big{--gc-start: 12;--gc-end: 1}}@media(min-width: 1400px){.u-gc-12\\/2\\@from-big{--gc-start: 12;--gc-end: 2}}@media(max-width: 1399px){.u-gc-12\\/2\\@to-big{--gc-start: 12;--gc-end: 2}}@media(min-width: 1400px){.u-gc-12\\/3\\@from-big{--gc-start: 12;--gc-end: 3}}@media(max-width: 1399px){.u-gc-12\\/3\\@to-big{--gc-start: 12;--gc-end: 3}}@media(min-width: 1400px){.u-gc-12\\/4\\@from-big{--gc-start: 12;--gc-end: 4}}@media(max-width: 1399px){.u-gc-12\\/4\\@to-big{--gc-start: 12;--gc-end: 4}}@media(min-width: 1400px){.u-gc-12\\/5\\@from-big{--gc-start: 12;--gc-end: 5}}@media(max-width: 1399px){.u-gc-12\\/5\\@to-big{--gc-start: 12;--gc-end: 5}}@media(min-width: 1400px){.u-gc-12\\/6\\@from-big{--gc-start: 12;--gc-end: 6}}@media(max-width: 1399px){.u-gc-12\\/6\\@to-big{--gc-start: 12;--gc-end: 6}}@media(min-width: 1400px){.u-gc-12\\/7\\@from-big{--gc-start: 12;--gc-end: 7}}@media(max-width: 1399px){.u-gc-12\\/7\\@to-big{--gc-start: 12;--gc-end: 7}}@media(min-width: 1400px){.u-gc-12\\/8\\@from-big{--gc-start: 12;--gc-end: 8}}@media(max-width: 1399px){.u-gc-12\\/8\\@to-big{--gc-start: 12;--gc-end: 8}}@media(min-width: 1400px){.u-gc-12\\/9\\@from-big{--gc-start: 12;--gc-end: 9}}@media(max-width: 1399px){.u-gc-12\\/9\\@to-big{--gc-start: 12;--gc-end: 9}}@media(min-width: 1400px){.u-gc-12\\/10\\@from-big{--gc-start: 12;--gc-end: 10}}@media(max-width: 1399px){.u-gc-12\\/10\\@to-big{--gc-start: 12;--gc-end: 10}}@media(min-width: 1400px){.u-gc-12\\/11\\@from-big{--gc-start: 12;--gc-end: 11}}@media(max-width: 1399px){.u-gc-12\\/11\\@to-big{--gc-start: 12;--gc-end: 11}}@media(min-width: 1400px){.u-gc-12\\/12\\@from-big{--gc-start: 12;--gc-end: 12}}@media(max-width: 1399px){.u-gc-12\\/12\\@to-big{--gc-start: 12;--gc-end: 12}}@media(min-width: 1400px){.u-gc-12\\/13\\@from-big{--gc-start: 12;--gc-end: 13}}@media(max-width: 1399px){.u-gc-12\\/13\\@to-big{--gc-start: 12;--gc-end: 13}}@media(min-width: 1400px){.u-gc-13\\/1\\@from-big{--gc-start: 13;--gc-end: 1}}@media(max-width: 1399px){.u-gc-13\\/1\\@to-big{--gc-start: 13;--gc-end: 1}}@media(min-width: 1400px){.u-gc-13\\/2\\@from-big{--gc-start: 13;--gc-end: 2}}@media(max-width: 1399px){.u-gc-13\\/2\\@to-big{--gc-start: 13;--gc-end: 2}}@media(min-width: 1400px){.u-gc-13\\/3\\@from-big{--gc-start: 13;--gc-end: 3}}@media(max-width: 1399px){.u-gc-13\\/3\\@to-big{--gc-start: 13;--gc-end: 3}}@media(min-width: 1400px){.u-gc-13\\/4\\@from-big{--gc-start: 13;--gc-end: 4}}@media(max-width: 1399px){.u-gc-13\\/4\\@to-big{--gc-start: 13;--gc-end: 4}}@media(min-width: 1400px){.u-gc-13\\/5\\@from-big{--gc-start: 13;--gc-end: 5}}@media(max-width: 1399px){.u-gc-13\\/5\\@to-big{--gc-start: 13;--gc-end: 5}}@media(min-width: 1400px){.u-gc-13\\/6\\@from-big{--gc-start: 13;--gc-end: 6}}@media(max-width: 1399px){.u-gc-13\\/6\\@to-big{--gc-start: 13;--gc-end: 6}}@media(min-width: 1400px){.u-gc-13\\/7\\@from-big{--gc-start: 13;--gc-end: 7}}@media(max-width: 1399px){.u-gc-13\\/7\\@to-big{--gc-start: 13;--gc-end: 7}}@media(min-width: 1400px){.u-gc-13\\/8\\@from-big{--gc-start: 13;--gc-end: 8}}@media(max-width: 1399px){.u-gc-13\\/8\\@to-big{--gc-start: 13;--gc-end: 8}}@media(min-width: 1400px){.u-gc-13\\/9\\@from-big{--gc-start: 13;--gc-end: 9}}@media(max-width: 1399px){.u-gc-13\\/9\\@to-big{--gc-start: 13;--gc-end: 9}}@media(min-width: 1400px){.u-gc-13\\/10\\@from-big{--gc-start: 13;--gc-end: 10}}@media(max-width: 1399px){.u-gc-13\\/10\\@to-big{--gc-start: 13;--gc-end: 10}}@media(min-width: 1400px){.u-gc-13\\/11\\@from-big{--gc-start: 13;--gc-end: 11}}@media(max-width: 1399px){.u-gc-13\\/11\\@to-big{--gc-start: 13;--gc-end: 11}}@media(min-width: 1400px){.u-gc-13\\/12\\@from-big{--gc-start: 13;--gc-end: 12}}@media(max-width: 1399px){.u-gc-13\\/12\\@to-big{--gc-start: 13;--gc-end: 12}}@media(min-width: 1400px){.u-gc-13\\/13\\@from-big{--gc-start: 13;--gc-end: 13}}@media(max-width: 1399px){.u-gc-13\\/13\\@to-big{--gc-start: 13;--gc-end: 13}}@media(min-width: 1600px){.u-gc-1\\/1\\@from-huge{--gc-start: 1;--gc-end: 1}}@media(max-width: 1599px){.u-gc-1\\/1\\@to-huge{--gc-start: 1;--gc-end: 1}}@media(min-width: 1600px){.u-gc-1\\/2\\@from-huge{--gc-start: 1;--gc-end: 2}}@media(max-width: 1599px){.u-gc-1\\/2\\@to-huge{--gc-start: 1;--gc-end: 2}}@media(min-width: 1600px){.u-gc-1\\/3\\@from-huge{--gc-start: 1;--gc-end: 3}}@media(max-width: 1599px){.u-gc-1\\/3\\@to-huge{--gc-start: 1;--gc-end: 3}}@media(min-width: 1600px){.u-gc-1\\/4\\@from-huge{--gc-start: 1;--gc-end: 4}}@media(max-width: 1599px){.u-gc-1\\/4\\@to-huge{--gc-start: 1;--gc-end: 4}}@media(min-width: 1600px){.u-gc-1\\/5\\@from-huge{--gc-start: 1;--gc-end: 5}}@media(max-width: 1599px){.u-gc-1\\/5\\@to-huge{--gc-start: 1;--gc-end: 5}}@media(min-width: 1600px){.u-gc-1\\/6\\@from-huge{--gc-start: 1;--gc-end: 6}}@media(max-width: 1599px){.u-gc-1\\/6\\@to-huge{--gc-start: 1;--gc-end: 6}}@media(min-width: 1600px){.u-gc-1\\/7\\@from-huge{--gc-start: 1;--gc-end: 7}}@media(max-width: 1599px){.u-gc-1\\/7\\@to-huge{--gc-start: 1;--gc-end: 7}}@media(min-width: 1600px){.u-gc-1\\/8\\@from-huge{--gc-start: 1;--gc-end: 8}}@media(max-width: 1599px){.u-gc-1\\/8\\@to-huge{--gc-start: 1;--gc-end: 8}}@media(min-width: 1600px){.u-gc-1\\/9\\@from-huge{--gc-start: 1;--gc-end: 9}}@media(max-width: 1599px){.u-gc-1\\/9\\@to-huge{--gc-start: 1;--gc-end: 9}}@media(min-width: 1600px){.u-gc-1\\/10\\@from-huge{--gc-start: 1;--gc-end: 10}}@media(max-width: 1599px){.u-gc-1\\/10\\@to-huge{--gc-start: 1;--gc-end: 10}}@media(min-width: 1600px){.u-gc-1\\/11\\@from-huge{--gc-start: 1;--gc-end: 11}}@media(max-width: 1599px){.u-gc-1\\/11\\@to-huge{--gc-start: 1;--gc-end: 11}}@media(min-width: 1600px){.u-gc-1\\/12\\@from-huge{--gc-start: 1;--gc-end: 12}}@media(max-width: 1599px){.u-gc-1\\/12\\@to-huge{--gc-start: 1;--gc-end: 12}}@media(min-width: 1600px){.u-gc-1\\/13\\@from-huge{--gc-start: 1;--gc-end: 13}}@media(max-width: 1599px){.u-gc-1\\/13\\@to-huge{--gc-start: 1;--gc-end: 13}}@media(min-width: 1600px){.u-gc-2\\/1\\@from-huge{--gc-start: 2;--gc-end: 1}}@media(max-width: 1599px){.u-gc-2\\/1\\@to-huge{--gc-start: 2;--gc-end: 1}}@media(min-width: 1600px){.u-gc-2\\/2\\@from-huge{--gc-start: 2;--gc-end: 2}}@media(max-width: 1599px){.u-gc-2\\/2\\@to-huge{--gc-start: 2;--gc-end: 2}}@media(min-width: 1600px){.u-gc-2\\/3\\@from-huge{--gc-start: 2;--gc-end: 3}}@media(max-width: 1599px){.u-gc-2\\/3\\@to-huge{--gc-start: 2;--gc-end: 3}}@media(min-width: 1600px){.u-gc-2\\/4\\@from-huge{--gc-start: 2;--gc-end: 4}}@media(max-width: 1599px){.u-gc-2\\/4\\@to-huge{--gc-start: 2;--gc-end: 4}}@media(min-width: 1600px){.u-gc-2\\/5\\@from-huge{--gc-start: 2;--gc-end: 5}}@media(max-width: 1599px){.u-gc-2\\/5\\@to-huge{--gc-start: 2;--gc-end: 5}}@media(min-width: 1600px){.u-gc-2\\/6\\@from-huge{--gc-start: 2;--gc-end: 6}}@media(max-width: 1599px){.u-gc-2\\/6\\@to-huge{--gc-start: 2;--gc-end: 6}}@media(min-width: 1600px){.u-gc-2\\/7\\@from-huge{--gc-start: 2;--gc-end: 7}}@media(max-width: 1599px){.u-gc-2\\/7\\@to-huge{--gc-start: 2;--gc-end: 7}}@media(min-width: 1600px){.u-gc-2\\/8\\@from-huge{--gc-start: 2;--gc-end: 8}}@media(max-width: 1599px){.u-gc-2\\/8\\@to-huge{--gc-start: 2;--gc-end: 8}}@media(min-width: 1600px){.u-gc-2\\/9\\@from-huge{--gc-start: 2;--gc-end: 9}}@media(max-width: 1599px){.u-gc-2\\/9\\@to-huge{--gc-start: 2;--gc-end: 9}}@media(min-width: 1600px){.u-gc-2\\/10\\@from-huge{--gc-start: 2;--gc-end: 10}}@media(max-width: 1599px){.u-gc-2\\/10\\@to-huge{--gc-start: 2;--gc-end: 10}}@media(min-width: 1600px){.u-gc-2\\/11\\@from-huge{--gc-start: 2;--gc-end: 11}}@media(max-width: 1599px){.u-gc-2\\/11\\@to-huge{--gc-start: 2;--gc-end: 11}}@media(min-width: 1600px){.u-gc-2\\/12\\@from-huge{--gc-start: 2;--gc-end: 12}}@media(max-width: 1599px){.u-gc-2\\/12\\@to-huge{--gc-start: 2;--gc-end: 12}}@media(min-width: 1600px){.u-gc-2\\/13\\@from-huge{--gc-start: 2;--gc-end: 13}}@media(max-width: 1599px){.u-gc-2\\/13\\@to-huge{--gc-start: 2;--gc-end: 13}}@media(min-width: 1600px){.u-gc-3\\/1\\@from-huge{--gc-start: 3;--gc-end: 1}}@media(max-width: 1599px){.u-gc-3\\/1\\@to-huge{--gc-start: 3;--gc-end: 1}}@media(min-width: 1600px){.u-gc-3\\/2\\@from-huge{--gc-start: 3;--gc-end: 2}}@media(max-width: 1599px){.u-gc-3\\/2\\@to-huge{--gc-start: 3;--gc-end: 2}}@media(min-width: 1600px){.u-gc-3\\/3\\@from-huge{--gc-start: 3;--gc-end: 3}}@media(max-width: 1599px){.u-gc-3\\/3\\@to-huge{--gc-start: 3;--gc-end: 3}}@media(min-width: 1600px){.u-gc-3\\/4\\@from-huge{--gc-start: 3;--gc-end: 4}}@media(max-width: 1599px){.u-gc-3\\/4\\@to-huge{--gc-start: 3;--gc-end: 4}}@media(min-width: 1600px){.u-gc-3\\/5\\@from-huge{--gc-start: 3;--gc-end: 5}}@media(max-width: 1599px){.u-gc-3\\/5\\@to-huge{--gc-start: 3;--gc-end: 5}}@media(min-width: 1600px){.u-gc-3\\/6\\@from-huge{--gc-start: 3;--gc-end: 6}}@media(max-width: 1599px){.u-gc-3\\/6\\@to-huge{--gc-start: 3;--gc-end: 6}}@media(min-width: 1600px){.u-gc-3\\/7\\@from-huge{--gc-start: 3;--gc-end: 7}}@media(max-width: 1599px){.u-gc-3\\/7\\@to-huge{--gc-start: 3;--gc-end: 7}}@media(min-width: 1600px){.u-gc-3\\/8\\@from-huge{--gc-start: 3;--gc-end: 8}}@media(max-width: 1599px){.u-gc-3\\/8\\@to-huge{--gc-start: 3;--gc-end: 8}}@media(min-width: 1600px){.u-gc-3\\/9\\@from-huge{--gc-start: 3;--gc-end: 9}}@media(max-width: 1599px){.u-gc-3\\/9\\@to-huge{--gc-start: 3;--gc-end: 9}}@media(min-width: 1600px){.u-gc-3\\/10\\@from-huge{--gc-start: 3;--gc-end: 10}}@media(max-width: 1599px){.u-gc-3\\/10\\@to-huge{--gc-start: 3;--gc-end: 10}}@media(min-width: 1600px){.u-gc-3\\/11\\@from-huge{--gc-start: 3;--gc-end: 11}}@media(max-width: 1599px){.u-gc-3\\/11\\@to-huge{--gc-start: 3;--gc-end: 11}}@media(min-width: 1600px){.u-gc-3\\/12\\@from-huge{--gc-start: 3;--gc-end: 12}}@media(max-width: 1599px){.u-gc-3\\/12\\@to-huge{--gc-start: 3;--gc-end: 12}}@media(min-width: 1600px){.u-gc-3\\/13\\@from-huge{--gc-start: 3;--gc-end: 13}}@media(max-width: 1599px){.u-gc-3\\/13\\@to-huge{--gc-start: 3;--gc-end: 13}}@media(min-width: 1600px){.u-gc-4\\/1\\@from-huge{--gc-start: 4;--gc-end: 1}}@media(max-width: 1599px){.u-gc-4\\/1\\@to-huge{--gc-start: 4;--gc-end: 1}}@media(min-width: 1600px){.u-gc-4\\/2\\@from-huge{--gc-start: 4;--gc-end: 2}}@media(max-width: 1599px){.u-gc-4\\/2\\@to-huge{--gc-start: 4;--gc-end: 2}}@media(min-width: 1600px){.u-gc-4\\/3\\@from-huge{--gc-start: 4;--gc-end: 3}}@media(max-width: 1599px){.u-gc-4\\/3\\@to-huge{--gc-start: 4;--gc-end: 3}}@media(min-width: 1600px){.u-gc-4\\/4\\@from-huge{--gc-start: 4;--gc-end: 4}}@media(max-width: 1599px){.u-gc-4\\/4\\@to-huge{--gc-start: 4;--gc-end: 4}}@media(min-width: 1600px){.u-gc-4\\/5\\@from-huge{--gc-start: 4;--gc-end: 5}}@media(max-width: 1599px){.u-gc-4\\/5\\@to-huge{--gc-start: 4;--gc-end: 5}}@media(min-width: 1600px){.u-gc-4\\/6\\@from-huge{--gc-start: 4;--gc-end: 6}}@media(max-width: 1599px){.u-gc-4\\/6\\@to-huge{--gc-start: 4;--gc-end: 6}}@media(min-width: 1600px){.u-gc-4\\/7\\@from-huge{--gc-start: 4;--gc-end: 7}}@media(max-width: 1599px){.u-gc-4\\/7\\@to-huge{--gc-start: 4;--gc-end: 7}}@media(min-width: 1600px){.u-gc-4\\/8\\@from-huge{--gc-start: 4;--gc-end: 8}}@media(max-width: 1599px){.u-gc-4\\/8\\@to-huge{--gc-start: 4;--gc-end: 8}}@media(min-width: 1600px){.u-gc-4\\/9\\@from-huge{--gc-start: 4;--gc-end: 9}}@media(max-width: 1599px){.u-gc-4\\/9\\@to-huge{--gc-start: 4;--gc-end: 9}}@media(min-width: 1600px){.u-gc-4\\/10\\@from-huge{--gc-start: 4;--gc-end: 10}}@media(max-width: 1599px){.u-gc-4\\/10\\@to-huge{--gc-start: 4;--gc-end: 10}}@media(min-width: 1600px){.u-gc-4\\/11\\@from-huge{--gc-start: 4;--gc-end: 11}}@media(max-width: 1599px){.u-gc-4\\/11\\@to-huge{--gc-start: 4;--gc-end: 11}}@media(min-width: 1600px){.u-gc-4\\/12\\@from-huge{--gc-start: 4;--gc-end: 12}}@media(max-width: 1599px){.u-gc-4\\/12\\@to-huge{--gc-start: 4;--gc-end: 12}}@media(min-width: 1600px){.u-gc-4\\/13\\@from-huge{--gc-start: 4;--gc-end: 13}}@media(max-width: 1599px){.u-gc-4\\/13\\@to-huge{--gc-start: 4;--gc-end: 13}}@media(min-width: 1600px){.u-gc-5\\/1\\@from-huge{--gc-start: 5;--gc-end: 1}}@media(max-width: 1599px){.u-gc-5\\/1\\@to-huge{--gc-start: 5;--gc-end: 1}}@media(min-width: 1600px){.u-gc-5\\/2\\@from-huge{--gc-start: 5;--gc-end: 2}}@media(max-width: 1599px){.u-gc-5\\/2\\@to-huge{--gc-start: 5;--gc-end: 2}}@media(min-width: 1600px){.u-gc-5\\/3\\@from-huge{--gc-start: 5;--gc-end: 3}}@media(max-width: 1599px){.u-gc-5\\/3\\@to-huge{--gc-start: 5;--gc-end: 3}}@media(min-width: 1600px){.u-gc-5\\/4\\@from-huge{--gc-start: 5;--gc-end: 4}}@media(max-width: 1599px){.u-gc-5\\/4\\@to-huge{--gc-start: 5;--gc-end: 4}}@media(min-width: 1600px){.u-gc-5\\/5\\@from-huge{--gc-start: 5;--gc-end: 5}}@media(max-width: 1599px){.u-gc-5\\/5\\@to-huge{--gc-start: 5;--gc-end: 5}}@media(min-width: 1600px){.u-gc-5\\/6\\@from-huge{--gc-start: 5;--gc-end: 6}}@media(max-width: 1599px){.u-gc-5\\/6\\@to-huge{--gc-start: 5;--gc-end: 6}}@media(min-width: 1600px){.u-gc-5\\/7\\@from-huge{--gc-start: 5;--gc-end: 7}}@media(max-width: 1599px){.u-gc-5\\/7\\@to-huge{--gc-start: 5;--gc-end: 7}}@media(min-width: 1600px){.u-gc-5\\/8\\@from-huge{--gc-start: 5;--gc-end: 8}}@media(max-width: 1599px){.u-gc-5\\/8\\@to-huge{--gc-start: 5;--gc-end: 8}}@media(min-width: 1600px){.u-gc-5\\/9\\@from-huge{--gc-start: 5;--gc-end: 9}}@media(max-width: 1599px){.u-gc-5\\/9\\@to-huge{--gc-start: 5;--gc-end: 9}}@media(min-width: 1600px){.u-gc-5\\/10\\@from-huge{--gc-start: 5;--gc-end: 10}}@media(max-width: 1599px){.u-gc-5\\/10\\@to-huge{--gc-start: 5;--gc-end: 10}}@media(min-width: 1600px){.u-gc-5\\/11\\@from-huge{--gc-start: 5;--gc-end: 11}}@media(max-width: 1599px){.u-gc-5\\/11\\@to-huge{--gc-start: 5;--gc-end: 11}}@media(min-width: 1600px){.u-gc-5\\/12\\@from-huge{--gc-start: 5;--gc-end: 12}}@media(max-width: 1599px){.u-gc-5\\/12\\@to-huge{--gc-start: 5;--gc-end: 12}}@media(min-width: 1600px){.u-gc-5\\/13\\@from-huge{--gc-start: 5;--gc-end: 13}}@media(max-width: 1599px){.u-gc-5\\/13\\@to-huge{--gc-start: 5;--gc-end: 13}}@media(min-width: 1600px){.u-gc-6\\/1\\@from-huge{--gc-start: 6;--gc-end: 1}}@media(max-width: 1599px){.u-gc-6\\/1\\@to-huge{--gc-start: 6;--gc-end: 1}}@media(min-width: 1600px){.u-gc-6\\/2\\@from-huge{--gc-start: 6;--gc-end: 2}}@media(max-width: 1599px){.u-gc-6\\/2\\@to-huge{--gc-start: 6;--gc-end: 2}}@media(min-width: 1600px){.u-gc-6\\/3\\@from-huge{--gc-start: 6;--gc-end: 3}}@media(max-width: 1599px){.u-gc-6\\/3\\@to-huge{--gc-start: 6;--gc-end: 3}}@media(min-width: 1600px){.u-gc-6\\/4\\@from-huge{--gc-start: 6;--gc-end: 4}}@media(max-width: 1599px){.u-gc-6\\/4\\@to-huge{--gc-start: 6;--gc-end: 4}}@media(min-width: 1600px){.u-gc-6\\/5\\@from-huge{--gc-start: 6;--gc-end: 5}}@media(max-width: 1599px){.u-gc-6\\/5\\@to-huge{--gc-start: 6;--gc-end: 5}}@media(min-width: 1600px){.u-gc-6\\/6\\@from-huge{--gc-start: 6;--gc-end: 6}}@media(max-width: 1599px){.u-gc-6\\/6\\@to-huge{--gc-start: 6;--gc-end: 6}}@media(min-width: 1600px){.u-gc-6\\/7\\@from-huge{--gc-start: 6;--gc-end: 7}}@media(max-width: 1599px){.u-gc-6\\/7\\@to-huge{--gc-start: 6;--gc-end: 7}}@media(min-width: 1600px){.u-gc-6\\/8\\@from-huge{--gc-start: 6;--gc-end: 8}}@media(max-width: 1599px){.u-gc-6\\/8\\@to-huge{--gc-start: 6;--gc-end: 8}}@media(min-width: 1600px){.u-gc-6\\/9\\@from-huge{--gc-start: 6;--gc-end: 9}}@media(max-width: 1599px){.u-gc-6\\/9\\@to-huge{--gc-start: 6;--gc-end: 9}}@media(min-width: 1600px){.u-gc-6\\/10\\@from-huge{--gc-start: 6;--gc-end: 10}}@media(max-width: 1599px){.u-gc-6\\/10\\@to-huge{--gc-start: 6;--gc-end: 10}}@media(min-width: 1600px){.u-gc-6\\/11\\@from-huge{--gc-start: 6;--gc-end: 11}}@media(max-width: 1599px){.u-gc-6\\/11\\@to-huge{--gc-start: 6;--gc-end: 11}}@media(min-width: 1600px){.u-gc-6\\/12\\@from-huge{--gc-start: 6;--gc-end: 12}}@media(max-width: 1599px){.u-gc-6\\/12\\@to-huge{--gc-start: 6;--gc-end: 12}}@media(min-width: 1600px){.u-gc-6\\/13\\@from-huge{--gc-start: 6;--gc-end: 13}}@media(max-width: 1599px){.u-gc-6\\/13\\@to-huge{--gc-start: 6;--gc-end: 13}}@media(min-width: 1600px){.u-gc-7\\/1\\@from-huge{--gc-start: 7;--gc-end: 1}}@media(max-width: 1599px){.u-gc-7\\/1\\@to-huge{--gc-start: 7;--gc-end: 1}}@media(min-width: 1600px){.u-gc-7\\/2\\@from-huge{--gc-start: 7;--gc-end: 2}}@media(max-width: 1599px){.u-gc-7\\/2\\@to-huge{--gc-start: 7;--gc-end: 2}}@media(min-width: 1600px){.u-gc-7\\/3\\@from-huge{--gc-start: 7;--gc-end: 3}}@media(max-width: 1599px){.u-gc-7\\/3\\@to-huge{--gc-start: 7;--gc-end: 3}}@media(min-width: 1600px){.u-gc-7\\/4\\@from-huge{--gc-start: 7;--gc-end: 4}}@media(max-width: 1599px){.u-gc-7\\/4\\@to-huge{--gc-start: 7;--gc-end: 4}}@media(min-width: 1600px){.u-gc-7\\/5\\@from-huge{--gc-start: 7;--gc-end: 5}}@media(max-width: 1599px){.u-gc-7\\/5\\@to-huge{--gc-start: 7;--gc-end: 5}}@media(min-width: 1600px){.u-gc-7\\/6\\@from-huge{--gc-start: 7;--gc-end: 6}}@media(max-width: 1599px){.u-gc-7\\/6\\@to-huge{--gc-start: 7;--gc-end: 6}}@media(min-width: 1600px){.u-gc-7\\/7\\@from-huge{--gc-start: 7;--gc-end: 7}}@media(max-width: 1599px){.u-gc-7\\/7\\@to-huge{--gc-start: 7;--gc-end: 7}}@media(min-width: 1600px){.u-gc-7\\/8\\@from-huge{--gc-start: 7;--gc-end: 8}}@media(max-width: 1599px){.u-gc-7\\/8\\@to-huge{--gc-start: 7;--gc-end: 8}}@media(min-width: 1600px){.u-gc-7\\/9\\@from-huge{--gc-start: 7;--gc-end: 9}}@media(max-width: 1599px){.u-gc-7\\/9\\@to-huge{--gc-start: 7;--gc-end: 9}}@media(min-width: 1600px){.u-gc-7\\/10\\@from-huge{--gc-start: 7;--gc-end: 10}}@media(max-width: 1599px){.u-gc-7\\/10\\@to-huge{--gc-start: 7;--gc-end: 10}}@media(min-width: 1600px){.u-gc-7\\/11\\@from-huge{--gc-start: 7;--gc-end: 11}}@media(max-width: 1599px){.u-gc-7\\/11\\@to-huge{--gc-start: 7;--gc-end: 11}}@media(min-width: 1600px){.u-gc-7\\/12\\@from-huge{--gc-start: 7;--gc-end: 12}}@media(max-width: 1599px){.u-gc-7\\/12\\@to-huge{--gc-start: 7;--gc-end: 12}}@media(min-width: 1600px){.u-gc-7\\/13\\@from-huge{--gc-start: 7;--gc-end: 13}}@media(max-width: 1599px){.u-gc-7\\/13\\@to-huge{--gc-start: 7;--gc-end: 13}}@media(min-width: 1600px){.u-gc-8\\/1\\@from-huge{--gc-start: 8;--gc-end: 1}}@media(max-width: 1599px){.u-gc-8\\/1\\@to-huge{--gc-start: 8;--gc-end: 1}}@media(min-width: 1600px){.u-gc-8\\/2\\@from-huge{--gc-start: 8;--gc-end: 2}}@media(max-width: 1599px){.u-gc-8\\/2\\@to-huge{--gc-start: 8;--gc-end: 2}}@media(min-width: 1600px){.u-gc-8\\/3\\@from-huge{--gc-start: 8;--gc-end: 3}}@media(max-width: 1599px){.u-gc-8\\/3\\@to-huge{--gc-start: 8;--gc-end: 3}}@media(min-width: 1600px){.u-gc-8\\/4\\@from-huge{--gc-start: 8;--gc-end: 4}}@media(max-width: 1599px){.u-gc-8\\/4\\@to-huge{--gc-start: 8;--gc-end: 4}}@media(min-width: 1600px){.u-gc-8\\/5\\@from-huge{--gc-start: 8;--gc-end: 5}}@media(max-width: 1599px){.u-gc-8\\/5\\@to-huge{--gc-start: 8;--gc-end: 5}}@media(min-width: 1600px){.u-gc-8\\/6\\@from-huge{--gc-start: 8;--gc-end: 6}}@media(max-width: 1599px){.u-gc-8\\/6\\@to-huge{--gc-start: 8;--gc-end: 6}}@media(min-width: 1600px){.u-gc-8\\/7\\@from-huge{--gc-start: 8;--gc-end: 7}}@media(max-width: 1599px){.u-gc-8\\/7\\@to-huge{--gc-start: 8;--gc-end: 7}}@media(min-width: 1600px){.u-gc-8\\/8\\@from-huge{--gc-start: 8;--gc-end: 8}}@media(max-width: 1599px){.u-gc-8\\/8\\@to-huge{--gc-start: 8;--gc-end: 8}}@media(min-width: 1600px){.u-gc-8\\/9\\@from-huge{--gc-start: 8;--gc-end: 9}}@media(max-width: 1599px){.u-gc-8\\/9\\@to-huge{--gc-start: 8;--gc-end: 9}}@media(min-width: 1600px){.u-gc-8\\/10\\@from-huge{--gc-start: 8;--gc-end: 10}}@media(max-width: 1599px){.u-gc-8\\/10\\@to-huge{--gc-start: 8;--gc-end: 10}}@media(min-width: 1600px){.u-gc-8\\/11\\@from-huge{--gc-start: 8;--gc-end: 11}}@media(max-width: 1599px){.u-gc-8\\/11\\@to-huge{--gc-start: 8;--gc-end: 11}}@media(min-width: 1600px){.u-gc-8\\/12\\@from-huge{--gc-start: 8;--gc-end: 12}}@media(max-width: 1599px){.u-gc-8\\/12\\@to-huge{--gc-start: 8;--gc-end: 12}}@media(min-width: 1600px){.u-gc-8\\/13\\@from-huge{--gc-start: 8;--gc-end: 13}}@media(max-width: 1599px){.u-gc-8\\/13\\@to-huge{--gc-start: 8;--gc-end: 13}}@media(min-width: 1600px){.u-gc-9\\/1\\@from-huge{--gc-start: 9;--gc-end: 1}}@media(max-width: 1599px){.u-gc-9\\/1\\@to-huge{--gc-start: 9;--gc-end: 1}}@media(min-width: 1600px){.u-gc-9\\/2\\@from-huge{--gc-start: 9;--gc-end: 2}}@media(max-width: 1599px){.u-gc-9\\/2\\@to-huge{--gc-start: 9;--gc-end: 2}}@media(min-width: 1600px){.u-gc-9\\/3\\@from-huge{--gc-start: 9;--gc-end: 3}}@media(max-width: 1599px){.u-gc-9\\/3\\@to-huge{--gc-start: 9;--gc-end: 3}}@media(min-width: 1600px){.u-gc-9\\/4\\@from-huge{--gc-start: 9;--gc-end: 4}}@media(max-width: 1599px){.u-gc-9\\/4\\@to-huge{--gc-start: 9;--gc-end: 4}}@media(min-width: 1600px){.u-gc-9\\/5\\@from-huge{--gc-start: 9;--gc-end: 5}}@media(max-width: 1599px){.u-gc-9\\/5\\@to-huge{--gc-start: 9;--gc-end: 5}}@media(min-width: 1600px){.u-gc-9\\/6\\@from-huge{--gc-start: 9;--gc-end: 6}}@media(max-width: 1599px){.u-gc-9\\/6\\@to-huge{--gc-start: 9;--gc-end: 6}}@media(min-width: 1600px){.u-gc-9\\/7\\@from-huge{--gc-start: 9;--gc-end: 7}}@media(max-width: 1599px){.u-gc-9\\/7\\@to-huge{--gc-start: 9;--gc-end: 7}}@media(min-width: 1600px){.u-gc-9\\/8\\@from-huge{--gc-start: 9;--gc-end: 8}}@media(max-width: 1599px){.u-gc-9\\/8\\@to-huge{--gc-start: 9;--gc-end: 8}}@media(min-width: 1600px){.u-gc-9\\/9\\@from-huge{--gc-start: 9;--gc-end: 9}}@media(max-width: 1599px){.u-gc-9\\/9\\@to-huge{--gc-start: 9;--gc-end: 9}}@media(min-width: 1600px){.u-gc-9\\/10\\@from-huge{--gc-start: 9;--gc-end: 10}}@media(max-width: 1599px){.u-gc-9\\/10\\@to-huge{--gc-start: 9;--gc-end: 10}}@media(min-width: 1600px){.u-gc-9\\/11\\@from-huge{--gc-start: 9;--gc-end: 11}}@media(max-width: 1599px){.u-gc-9\\/11\\@to-huge{--gc-start: 9;--gc-end: 11}}@media(min-width: 1600px){.u-gc-9\\/12\\@from-huge{--gc-start: 9;--gc-end: 12}}@media(max-width: 1599px){.u-gc-9\\/12\\@to-huge{--gc-start: 9;--gc-end: 12}}@media(min-width: 1600px){.u-gc-9\\/13\\@from-huge{--gc-start: 9;--gc-end: 13}}@media(max-width: 1599px){.u-gc-9\\/13\\@to-huge{--gc-start: 9;--gc-end: 13}}@media(min-width: 1600px){.u-gc-10\\/1\\@from-huge{--gc-start: 10;--gc-end: 1}}@media(max-width: 1599px){.u-gc-10\\/1\\@to-huge{--gc-start: 10;--gc-end: 1}}@media(min-width: 1600px){.u-gc-10\\/2\\@from-huge{--gc-start: 10;--gc-end: 2}}@media(max-width: 1599px){.u-gc-10\\/2\\@to-huge{--gc-start: 10;--gc-end: 2}}@media(min-width: 1600px){.u-gc-10\\/3\\@from-huge{--gc-start: 10;--gc-end: 3}}@media(max-width: 1599px){.u-gc-10\\/3\\@to-huge{--gc-start: 10;--gc-end: 3}}@media(min-width: 1600px){.u-gc-10\\/4\\@from-huge{--gc-start: 10;--gc-end: 4}}@media(max-width: 1599px){.u-gc-10\\/4\\@to-huge{--gc-start: 10;--gc-end: 4}}@media(min-width: 1600px){.u-gc-10\\/5\\@from-huge{--gc-start: 10;--gc-end: 5}}@media(max-width: 1599px){.u-gc-10\\/5\\@to-huge{--gc-start: 10;--gc-end: 5}}@media(min-width: 1600px){.u-gc-10\\/6\\@from-huge{--gc-start: 10;--gc-end: 6}}@media(max-width: 1599px){.u-gc-10\\/6\\@to-huge{--gc-start: 10;--gc-end: 6}}@media(min-width: 1600px){.u-gc-10\\/7\\@from-huge{--gc-start: 10;--gc-end: 7}}@media(max-width: 1599px){.u-gc-10\\/7\\@to-huge{--gc-start: 10;--gc-end: 7}}@media(min-width: 1600px){.u-gc-10\\/8\\@from-huge{--gc-start: 10;--gc-end: 8}}@media(max-width: 1599px){.u-gc-10\\/8\\@to-huge{--gc-start: 10;--gc-end: 8}}@media(min-width: 1600px){.u-gc-10\\/9\\@from-huge{--gc-start: 10;--gc-end: 9}}@media(max-width: 1599px){.u-gc-10\\/9\\@to-huge{--gc-start: 10;--gc-end: 9}}@media(min-width: 1600px){.u-gc-10\\/10\\@from-huge{--gc-start: 10;--gc-end: 10}}@media(max-width: 1599px){.u-gc-10\\/10\\@to-huge{--gc-start: 10;--gc-end: 10}}@media(min-width: 1600px){.u-gc-10\\/11\\@from-huge{--gc-start: 10;--gc-end: 11}}@media(max-width: 1599px){.u-gc-10\\/11\\@to-huge{--gc-start: 10;--gc-end: 11}}@media(min-width: 1600px){.u-gc-10\\/12\\@from-huge{--gc-start: 10;--gc-end: 12}}@media(max-width: 1599px){.u-gc-10\\/12\\@to-huge{--gc-start: 10;--gc-end: 12}}@media(min-width: 1600px){.u-gc-10\\/13\\@from-huge{--gc-start: 10;--gc-end: 13}}@media(max-width: 1599px){.u-gc-10\\/13\\@to-huge{--gc-start: 10;--gc-end: 13}}@media(min-width: 1600px){.u-gc-11\\/1\\@from-huge{--gc-start: 11;--gc-end: 1}}@media(max-width: 1599px){.u-gc-11\\/1\\@to-huge{--gc-start: 11;--gc-end: 1}}@media(min-width: 1600px){.u-gc-11\\/2\\@from-huge{--gc-start: 11;--gc-end: 2}}@media(max-width: 1599px){.u-gc-11\\/2\\@to-huge{--gc-start: 11;--gc-end: 2}}@media(min-width: 1600px){.u-gc-11\\/3\\@from-huge{--gc-start: 11;--gc-end: 3}}@media(max-width: 1599px){.u-gc-11\\/3\\@to-huge{--gc-start: 11;--gc-end: 3}}@media(min-width: 1600px){.u-gc-11\\/4\\@from-huge{--gc-start: 11;--gc-end: 4}}@media(max-width: 1599px){.u-gc-11\\/4\\@to-huge{--gc-start: 11;--gc-end: 4}}@media(min-width: 1600px){.u-gc-11\\/5\\@from-huge{--gc-start: 11;--gc-end: 5}}@media(max-width: 1599px){.u-gc-11\\/5\\@to-huge{--gc-start: 11;--gc-end: 5}}@media(min-width: 1600px){.u-gc-11\\/6\\@from-huge{--gc-start: 11;--gc-end: 6}}@media(max-width: 1599px){.u-gc-11\\/6\\@to-huge{--gc-start: 11;--gc-end: 6}}@media(min-width: 1600px){.u-gc-11\\/7\\@from-huge{--gc-start: 11;--gc-end: 7}}@media(max-width: 1599px){.u-gc-11\\/7\\@to-huge{--gc-start: 11;--gc-end: 7}}@media(min-width: 1600px){.u-gc-11\\/8\\@from-huge{--gc-start: 11;--gc-end: 8}}@media(max-width: 1599px){.u-gc-11\\/8\\@to-huge{--gc-start: 11;--gc-end: 8}}@media(min-width: 1600px){.u-gc-11\\/9\\@from-huge{--gc-start: 11;--gc-end: 9}}@media(max-width: 1599px){.u-gc-11\\/9\\@to-huge{--gc-start: 11;--gc-end: 9}}@media(min-width: 1600px){.u-gc-11\\/10\\@from-huge{--gc-start: 11;--gc-end: 10}}@media(max-width: 1599px){.u-gc-11\\/10\\@to-huge{--gc-start: 11;--gc-end: 10}}@media(min-width: 1600px){.u-gc-11\\/11\\@from-huge{--gc-start: 11;--gc-end: 11}}@media(max-width: 1599px){.u-gc-11\\/11\\@to-huge{--gc-start: 11;--gc-end: 11}}@media(min-width: 1600px){.u-gc-11\\/12\\@from-huge{--gc-start: 11;--gc-end: 12}}@media(max-width: 1599px){.u-gc-11\\/12\\@to-huge{--gc-start: 11;--gc-end: 12}}@media(min-width: 1600px){.u-gc-11\\/13\\@from-huge{--gc-start: 11;--gc-end: 13}}@media(max-width: 1599px){.u-gc-11\\/13\\@to-huge{--gc-start: 11;--gc-end: 13}}@media(min-width: 1600px){.u-gc-12\\/1\\@from-huge{--gc-start: 12;--gc-end: 1}}@media(max-width: 1599px){.u-gc-12\\/1\\@to-huge{--gc-start: 12;--gc-end: 1}}@media(min-width: 1600px){.u-gc-12\\/2\\@from-huge{--gc-start: 12;--gc-end: 2}}@media(max-width: 1599px){.u-gc-12\\/2\\@to-huge{--gc-start: 12;--gc-end: 2}}@media(min-width: 1600px){.u-gc-12\\/3\\@from-huge{--gc-start: 12;--gc-end: 3}}@media(max-width: 1599px){.u-gc-12\\/3\\@to-huge{--gc-start: 12;--gc-end: 3}}@media(min-width: 1600px){.u-gc-12\\/4\\@from-huge{--gc-start: 12;--gc-end: 4}}@media(max-width: 1599px){.u-gc-12\\/4\\@to-huge{--gc-start: 12;--gc-end: 4}}@media(min-width: 1600px){.u-gc-12\\/5\\@from-huge{--gc-start: 12;--gc-end: 5}}@media(max-width: 1599px){.u-gc-12\\/5\\@to-huge{--gc-start: 12;--gc-end: 5}}@media(min-width: 1600px){.u-gc-12\\/6\\@from-huge{--gc-start: 12;--gc-end: 6}}@media(max-width: 1599px){.u-gc-12\\/6\\@to-huge{--gc-start: 12;--gc-end: 6}}@media(min-width: 1600px){.u-gc-12\\/7\\@from-huge{--gc-start: 12;--gc-end: 7}}@media(max-width: 1599px){.u-gc-12\\/7\\@to-huge{--gc-start: 12;--gc-end: 7}}@media(min-width: 1600px){.u-gc-12\\/8\\@from-huge{--gc-start: 12;--gc-end: 8}}@media(max-width: 1599px){.u-gc-12\\/8\\@to-huge{--gc-start: 12;--gc-end: 8}}@media(min-width: 1600px){.u-gc-12\\/9\\@from-huge{--gc-start: 12;--gc-end: 9}}@media(max-width: 1599px){.u-gc-12\\/9\\@to-huge{--gc-start: 12;--gc-end: 9}}@media(min-width: 1600px){.u-gc-12\\/10\\@from-huge{--gc-start: 12;--gc-end: 10}}@media(max-width: 1599px){.u-gc-12\\/10\\@to-huge{--gc-start: 12;--gc-end: 10}}@media(min-width: 1600px){.u-gc-12\\/11\\@from-huge{--gc-start: 12;--gc-end: 11}}@media(max-width: 1599px){.u-gc-12\\/11\\@to-huge{--gc-start: 12;--gc-end: 11}}@media(min-width: 1600px){.u-gc-12\\/12\\@from-huge{--gc-start: 12;--gc-end: 12}}@media(max-width: 1599px){.u-gc-12\\/12\\@to-huge{--gc-start: 12;--gc-end: 12}}@media(min-width: 1600px){.u-gc-12\\/13\\@from-huge{--gc-start: 12;--gc-end: 13}}@media(max-width: 1599px){.u-gc-12\\/13\\@to-huge{--gc-start: 12;--gc-end: 13}}@media(min-width: 1600px){.u-gc-13\\/1\\@from-huge{--gc-start: 13;--gc-end: 1}}@media(max-width: 1599px){.u-gc-13\\/1\\@to-huge{--gc-start: 13;--gc-end: 1}}@media(min-width: 1600px){.u-gc-13\\/2\\@from-huge{--gc-start: 13;--gc-end: 2}}@media(max-width: 1599px){.u-gc-13\\/2\\@to-huge{--gc-start: 13;--gc-end: 2}}@media(min-width: 1600px){.u-gc-13\\/3\\@from-huge{--gc-start: 13;--gc-end: 3}}@media(max-width: 1599px){.u-gc-13\\/3\\@to-huge{--gc-start: 13;--gc-end: 3}}@media(min-width: 1600px){.u-gc-13\\/4\\@from-huge{--gc-start: 13;--gc-end: 4}}@media(max-width: 1599px){.u-gc-13\\/4\\@to-huge{--gc-start: 13;--gc-end: 4}}@media(min-width: 1600px){.u-gc-13\\/5\\@from-huge{--gc-start: 13;--gc-end: 5}}@media(max-width: 1599px){.u-gc-13\\/5\\@to-huge{--gc-start: 13;--gc-end: 5}}@media(min-width: 1600px){.u-gc-13\\/6\\@from-huge{--gc-start: 13;--gc-end: 6}}@media(max-width: 1599px){.u-gc-13\\/6\\@to-huge{--gc-start: 13;--gc-end: 6}}@media(min-width: 1600px){.u-gc-13\\/7\\@from-huge{--gc-start: 13;--gc-end: 7}}@media(max-width: 1599px){.u-gc-13\\/7\\@to-huge{--gc-start: 13;--gc-end: 7}}@media(min-width: 1600px){.u-gc-13\\/8\\@from-huge{--gc-start: 13;--gc-end: 8}}@media(max-width: 1599px){.u-gc-13\\/8\\@to-huge{--gc-start: 13;--gc-end: 8}}@media(min-width: 1600px){.u-gc-13\\/9\\@from-huge{--gc-start: 13;--gc-end: 9}}@media(max-width: 1599px){.u-gc-13\\/9\\@to-huge{--gc-start: 13;--gc-end: 9}}@media(min-width: 1600px){.u-gc-13\\/10\\@from-huge{--gc-start: 13;--gc-end: 10}}@media(max-width: 1599px){.u-gc-13\\/10\\@to-huge{--gc-start: 13;--gc-end: 10}}@media(min-width: 1600px){.u-gc-13\\/11\\@from-huge{--gc-start: 13;--gc-end: 11}}@media(max-width: 1599px){.u-gc-13\\/11\\@to-huge{--gc-start: 13;--gc-end: 11}}@media(min-width: 1600px){.u-gc-13\\/12\\@from-huge{--gc-start: 13;--gc-end: 12}}@media(max-width: 1599px){.u-gc-13\\/12\\@to-huge{--gc-start: 13;--gc-end: 12}}@media(min-width: 1600px){.u-gc-13\\/13\\@from-huge{--gc-start: 13;--gc-end: 13}}@media(max-width: 1599px){.u-gc-13\\/13\\@to-huge{--gc-start: 13;--gc-end: 13}}@media(min-width: 1800px){.u-gc-1\\/1\\@from-enormous{--gc-start: 1;--gc-end: 1}}@media(max-width: 1799px){.u-gc-1\\/1\\@to-enormous{--gc-start: 1;--gc-end: 1}}@media(min-width: 1800px){.u-gc-1\\/2\\@from-enormous{--gc-start: 1;--gc-end: 2}}@media(max-width: 1799px){.u-gc-1\\/2\\@to-enormous{--gc-start: 1;--gc-end: 2}}@media(min-width: 1800px){.u-gc-1\\/3\\@from-enormous{--gc-start: 1;--gc-end: 3}}@media(max-width: 1799px){.u-gc-1\\/3\\@to-enormous{--gc-start: 1;--gc-end: 3}}@media(min-width: 1800px){.u-gc-1\\/4\\@from-enormous{--gc-start: 1;--gc-end: 4}}@media(max-width: 1799px){.u-gc-1\\/4\\@to-enormous{--gc-start: 1;--gc-end: 4}}@media(min-width: 1800px){.u-gc-1\\/5\\@from-enormous{--gc-start: 1;--gc-end: 5}}@media(max-width: 1799px){.u-gc-1\\/5\\@to-enormous{--gc-start: 1;--gc-end: 5}}@media(min-width: 1800px){.u-gc-1\\/6\\@from-enormous{--gc-start: 1;--gc-end: 6}}@media(max-width: 1799px){.u-gc-1\\/6\\@to-enormous{--gc-start: 1;--gc-end: 6}}@media(min-width: 1800px){.u-gc-1\\/7\\@from-enormous{--gc-start: 1;--gc-end: 7}}@media(max-width: 1799px){.u-gc-1\\/7\\@to-enormous{--gc-start: 1;--gc-end: 7}}@media(min-width: 1800px){.u-gc-1\\/8\\@from-enormous{--gc-start: 1;--gc-end: 8}}@media(max-width: 1799px){.u-gc-1\\/8\\@to-enormous{--gc-start: 1;--gc-end: 8}}@media(min-width: 1800px){.u-gc-1\\/9\\@from-enormous{--gc-start: 1;--gc-end: 9}}@media(max-width: 1799px){.u-gc-1\\/9\\@to-enormous{--gc-start: 1;--gc-end: 9}}@media(min-width: 1800px){.u-gc-1\\/10\\@from-enormous{--gc-start: 1;--gc-end: 10}}@media(max-width: 1799px){.u-gc-1\\/10\\@to-enormous{--gc-start: 1;--gc-end: 10}}@media(min-width: 1800px){.u-gc-1\\/11\\@from-enormous{--gc-start: 1;--gc-end: 11}}@media(max-width: 1799px){.u-gc-1\\/11\\@to-enormous{--gc-start: 1;--gc-end: 11}}@media(min-width: 1800px){.u-gc-1\\/12\\@from-enormous{--gc-start: 1;--gc-end: 12}}@media(max-width: 1799px){.u-gc-1\\/12\\@to-enormous{--gc-start: 1;--gc-end: 12}}@media(min-width: 1800px){.u-gc-1\\/13\\@from-enormous{--gc-start: 1;--gc-end: 13}}@media(max-width: 1799px){.u-gc-1\\/13\\@to-enormous{--gc-start: 1;--gc-end: 13}}@media(min-width: 1800px){.u-gc-2\\/1\\@from-enormous{--gc-start: 2;--gc-end: 1}}@media(max-width: 1799px){.u-gc-2\\/1\\@to-enormous{--gc-start: 2;--gc-end: 1}}@media(min-width: 1800px){.u-gc-2\\/2\\@from-enormous{--gc-start: 2;--gc-end: 2}}@media(max-width: 1799px){.u-gc-2\\/2\\@to-enormous{--gc-start: 2;--gc-end: 2}}@media(min-width: 1800px){.u-gc-2\\/3\\@from-enormous{--gc-start: 2;--gc-end: 3}}@media(max-width: 1799px){.u-gc-2\\/3\\@to-enormous{--gc-start: 2;--gc-end: 3}}@media(min-width: 1800px){.u-gc-2\\/4\\@from-enormous{--gc-start: 2;--gc-end: 4}}@media(max-width: 1799px){.u-gc-2\\/4\\@to-enormous{--gc-start: 2;--gc-end: 4}}@media(min-width: 1800px){.u-gc-2\\/5\\@from-enormous{--gc-start: 2;--gc-end: 5}}@media(max-width: 1799px){.u-gc-2\\/5\\@to-enormous{--gc-start: 2;--gc-end: 5}}@media(min-width: 1800px){.u-gc-2\\/6\\@from-enormous{--gc-start: 2;--gc-end: 6}}@media(max-width: 1799px){.u-gc-2\\/6\\@to-enormous{--gc-start: 2;--gc-end: 6}}@media(min-width: 1800px){.u-gc-2\\/7\\@from-enormous{--gc-start: 2;--gc-end: 7}}@media(max-width: 1799px){.u-gc-2\\/7\\@to-enormous{--gc-start: 2;--gc-end: 7}}@media(min-width: 1800px){.u-gc-2\\/8\\@from-enormous{--gc-start: 2;--gc-end: 8}}@media(max-width: 1799px){.u-gc-2\\/8\\@to-enormous{--gc-start: 2;--gc-end: 8}}@media(min-width: 1800px){.u-gc-2\\/9\\@from-enormous{--gc-start: 2;--gc-end: 9}}@media(max-width: 1799px){.u-gc-2\\/9\\@to-enormous{--gc-start: 2;--gc-end: 9}}@media(min-width: 1800px){.u-gc-2\\/10\\@from-enormous{--gc-start: 2;--gc-end: 10}}@media(max-width: 1799px){.u-gc-2\\/10\\@to-enormous{--gc-start: 2;--gc-end: 10}}@media(min-width: 1800px){.u-gc-2\\/11\\@from-enormous{--gc-start: 2;--gc-end: 11}}@media(max-width: 1799px){.u-gc-2\\/11\\@to-enormous{--gc-start: 2;--gc-end: 11}}@media(min-width: 1800px){.u-gc-2\\/12\\@from-enormous{--gc-start: 2;--gc-end: 12}}@media(max-width: 1799px){.u-gc-2\\/12\\@to-enormous{--gc-start: 2;--gc-end: 12}}@media(min-width: 1800px){.u-gc-2\\/13\\@from-enormous{--gc-start: 2;--gc-end: 13}}@media(max-width: 1799px){.u-gc-2\\/13\\@to-enormous{--gc-start: 2;--gc-end: 13}}@media(min-width: 1800px){.u-gc-3\\/1\\@from-enormous{--gc-start: 3;--gc-end: 1}}@media(max-width: 1799px){.u-gc-3\\/1\\@to-enormous{--gc-start: 3;--gc-end: 1}}@media(min-width: 1800px){.u-gc-3\\/2\\@from-enormous{--gc-start: 3;--gc-end: 2}}@media(max-width: 1799px){.u-gc-3\\/2\\@to-enormous{--gc-start: 3;--gc-end: 2}}@media(min-width: 1800px){.u-gc-3\\/3\\@from-enormous{--gc-start: 3;--gc-end: 3}}@media(max-width: 1799px){.u-gc-3\\/3\\@to-enormous{--gc-start: 3;--gc-end: 3}}@media(min-width: 1800px){.u-gc-3\\/4\\@from-enormous{--gc-start: 3;--gc-end: 4}}@media(max-width: 1799px){.u-gc-3\\/4\\@to-enormous{--gc-start: 3;--gc-end: 4}}@media(min-width: 1800px){.u-gc-3\\/5\\@from-enormous{--gc-start: 3;--gc-end: 5}}@media(max-width: 1799px){.u-gc-3\\/5\\@to-enormous{--gc-start: 3;--gc-end: 5}}@media(min-width: 1800px){.u-gc-3\\/6\\@from-enormous{--gc-start: 3;--gc-end: 6}}@media(max-width: 1799px){.u-gc-3\\/6\\@to-enormous{--gc-start: 3;--gc-end: 6}}@media(min-width: 1800px){.u-gc-3\\/7\\@from-enormous{--gc-start: 3;--gc-end: 7}}@media(max-width: 1799px){.u-gc-3\\/7\\@to-enormous{--gc-start: 3;--gc-end: 7}}@media(min-width: 1800px){.u-gc-3\\/8\\@from-enormous{--gc-start: 3;--gc-end: 8}}@media(max-width: 1799px){.u-gc-3\\/8\\@to-enormous{--gc-start: 3;--gc-end: 8}}@media(min-width: 1800px){.u-gc-3\\/9\\@from-enormous{--gc-start: 3;--gc-end: 9}}@media(max-width: 1799px){.u-gc-3\\/9\\@to-enormous{--gc-start: 3;--gc-end: 9}}@media(min-width: 1800px){.u-gc-3\\/10\\@from-enormous{--gc-start: 3;--gc-end: 10}}@media(max-width: 1799px){.u-gc-3\\/10\\@to-enormous{--gc-start: 3;--gc-end: 10}}@media(min-width: 1800px){.u-gc-3\\/11\\@from-enormous{--gc-start: 3;--gc-end: 11}}@media(max-width: 1799px){.u-gc-3\\/11\\@to-enormous{--gc-start: 3;--gc-end: 11}}@media(min-width: 1800px){.u-gc-3\\/12\\@from-enormous{--gc-start: 3;--gc-end: 12}}@media(max-width: 1799px){.u-gc-3\\/12\\@to-enormous{--gc-start: 3;--gc-end: 12}}@media(min-width: 1800px){.u-gc-3\\/13\\@from-enormous{--gc-start: 3;--gc-end: 13}}@media(max-width: 1799px){.u-gc-3\\/13\\@to-enormous{--gc-start: 3;--gc-end: 13}}@media(min-width: 1800px){.u-gc-4\\/1\\@from-enormous{--gc-start: 4;--gc-end: 1}}@media(max-width: 1799px){.u-gc-4\\/1\\@to-enormous{--gc-start: 4;--gc-end: 1}}@media(min-width: 1800px){.u-gc-4\\/2\\@from-enormous{--gc-start: 4;--gc-end: 2}}@media(max-width: 1799px){.u-gc-4\\/2\\@to-enormous{--gc-start: 4;--gc-end: 2}}@media(min-width: 1800px){.u-gc-4\\/3\\@from-enormous{--gc-start: 4;--gc-end: 3}}@media(max-width: 1799px){.u-gc-4\\/3\\@to-enormous{--gc-start: 4;--gc-end: 3}}@media(min-width: 1800px){.u-gc-4\\/4\\@from-enormous{--gc-start: 4;--gc-end: 4}}@media(max-width: 1799px){.u-gc-4\\/4\\@to-enormous{--gc-start: 4;--gc-end: 4}}@media(min-width: 1800px){.u-gc-4\\/5\\@from-enormous{--gc-start: 4;--gc-end: 5}}@media(max-width: 1799px){.u-gc-4\\/5\\@to-enormous{--gc-start: 4;--gc-end: 5}}@media(min-width: 1800px){.u-gc-4\\/6\\@from-enormous{--gc-start: 4;--gc-end: 6}}@media(max-width: 1799px){.u-gc-4\\/6\\@to-enormous{--gc-start: 4;--gc-end: 6}}@media(min-width: 1800px){.u-gc-4\\/7\\@from-enormous{--gc-start: 4;--gc-end: 7}}@media(max-width: 1799px){.u-gc-4\\/7\\@to-enormous{--gc-start: 4;--gc-end: 7}}@media(min-width: 1800px){.u-gc-4\\/8\\@from-enormous{--gc-start: 4;--gc-end: 8}}@media(max-width: 1799px){.u-gc-4\\/8\\@to-enormous{--gc-start: 4;--gc-end: 8}}@media(min-width: 1800px){.u-gc-4\\/9\\@from-enormous{--gc-start: 4;--gc-end: 9}}@media(max-width: 1799px){.u-gc-4\\/9\\@to-enormous{--gc-start: 4;--gc-end: 9}}@media(min-width: 1800px){.u-gc-4\\/10\\@from-enormous{--gc-start: 4;--gc-end: 10}}@media(max-width: 1799px){.u-gc-4\\/10\\@to-enormous{--gc-start: 4;--gc-end: 10}}@media(min-width: 1800px){.u-gc-4\\/11\\@from-enormous{--gc-start: 4;--gc-end: 11}}@media(max-width: 1799px){.u-gc-4\\/11\\@to-enormous{--gc-start: 4;--gc-end: 11}}@media(min-width: 1800px){.u-gc-4\\/12\\@from-enormous{--gc-start: 4;--gc-end: 12}}@media(max-width: 1799px){.u-gc-4\\/12\\@to-enormous{--gc-start: 4;--gc-end: 12}}@media(min-width: 1800px){.u-gc-4\\/13\\@from-enormous{--gc-start: 4;--gc-end: 13}}@media(max-width: 1799px){.u-gc-4\\/13\\@to-enormous{--gc-start: 4;--gc-end: 13}}@media(min-width: 1800px){.u-gc-5\\/1\\@from-enormous{--gc-start: 5;--gc-end: 1}}@media(max-width: 1799px){.u-gc-5\\/1\\@to-enormous{--gc-start: 5;--gc-end: 1}}@media(min-width: 1800px){.u-gc-5\\/2\\@from-enormous{--gc-start: 5;--gc-end: 2}}@media(max-width: 1799px){.u-gc-5\\/2\\@to-enormous{--gc-start: 5;--gc-end: 2}}@media(min-width: 1800px){.u-gc-5\\/3\\@from-enormous{--gc-start: 5;--gc-end: 3}}@media(max-width: 1799px){.u-gc-5\\/3\\@to-enormous{--gc-start: 5;--gc-end: 3}}@media(min-width: 1800px){.u-gc-5\\/4\\@from-enormous{--gc-start: 5;--gc-end: 4}}@media(max-width: 1799px){.u-gc-5\\/4\\@to-enormous{--gc-start: 5;--gc-end: 4}}@media(min-width: 1800px){.u-gc-5\\/5\\@from-enormous{--gc-start: 5;--gc-end: 5}}@media(max-width: 1799px){.u-gc-5\\/5\\@to-enormous{--gc-start: 5;--gc-end: 5}}@media(min-width: 1800px){.u-gc-5\\/6\\@from-enormous{--gc-start: 5;--gc-end: 6}}@media(max-width: 1799px){.u-gc-5\\/6\\@to-enormous{--gc-start: 5;--gc-end: 6}}@media(min-width: 1800px){.u-gc-5\\/7\\@from-enormous{--gc-start: 5;--gc-end: 7}}@media(max-width: 1799px){.u-gc-5\\/7\\@to-enormous{--gc-start: 5;--gc-end: 7}}@media(min-width: 1800px){.u-gc-5\\/8\\@from-enormous{--gc-start: 5;--gc-end: 8}}@media(max-width: 1799px){.u-gc-5\\/8\\@to-enormous{--gc-start: 5;--gc-end: 8}}@media(min-width: 1800px){.u-gc-5\\/9\\@from-enormous{--gc-start: 5;--gc-end: 9}}@media(max-width: 1799px){.u-gc-5\\/9\\@to-enormous{--gc-start: 5;--gc-end: 9}}@media(min-width: 1800px){.u-gc-5\\/10\\@from-enormous{--gc-start: 5;--gc-end: 10}}@media(max-width: 1799px){.u-gc-5\\/10\\@to-enormous{--gc-start: 5;--gc-end: 10}}@media(min-width: 1800px){.u-gc-5\\/11\\@from-enormous{--gc-start: 5;--gc-end: 11}}@media(max-width: 1799px){.u-gc-5\\/11\\@to-enormous{--gc-start: 5;--gc-end: 11}}@media(min-width: 1800px){.u-gc-5\\/12\\@from-enormous{--gc-start: 5;--gc-end: 12}}@media(max-width: 1799px){.u-gc-5\\/12\\@to-enormous{--gc-start: 5;--gc-end: 12}}@media(min-width: 1800px){.u-gc-5\\/13\\@from-enormous{--gc-start: 5;--gc-end: 13}}@media(max-width: 1799px){.u-gc-5\\/13\\@to-enormous{--gc-start: 5;--gc-end: 13}}@media(min-width: 1800px){.u-gc-6\\/1\\@from-enormous{--gc-start: 6;--gc-end: 1}}@media(max-width: 1799px){.u-gc-6\\/1\\@to-enormous{--gc-start: 6;--gc-end: 1}}@media(min-width: 1800px){.u-gc-6\\/2\\@from-enormous{--gc-start: 6;--gc-end: 2}}@media(max-width: 1799px){.u-gc-6\\/2\\@to-enormous{--gc-start: 6;--gc-end: 2}}@media(min-width: 1800px){.u-gc-6\\/3\\@from-enormous{--gc-start: 6;--gc-end: 3}}@media(max-width: 1799px){.u-gc-6\\/3\\@to-enormous{--gc-start: 6;--gc-end: 3}}@media(min-width: 1800px){.u-gc-6\\/4\\@from-enormous{--gc-start: 6;--gc-end: 4}}@media(max-width: 1799px){.u-gc-6\\/4\\@to-enormous{--gc-start: 6;--gc-end: 4}}@media(min-width: 1800px){.u-gc-6\\/5\\@from-enormous{--gc-start: 6;--gc-end: 5}}@media(max-width: 1799px){.u-gc-6\\/5\\@to-enormous{--gc-start: 6;--gc-end: 5}}@media(min-width: 1800px){.u-gc-6\\/6\\@from-enormous{--gc-start: 6;--gc-end: 6}}@media(max-width: 1799px){.u-gc-6\\/6\\@to-enormous{--gc-start: 6;--gc-end: 6}}@media(min-width: 1800px){.u-gc-6\\/7\\@from-enormous{--gc-start: 6;--gc-end: 7}}@media(max-width: 1799px){.u-gc-6\\/7\\@to-enormous{--gc-start: 6;--gc-end: 7}}@media(min-width: 1800px){.u-gc-6\\/8\\@from-enormous{--gc-start: 6;--gc-end: 8}}@media(max-width: 1799px){.u-gc-6\\/8\\@to-enormous{--gc-start: 6;--gc-end: 8}}@media(min-width: 1800px){.u-gc-6\\/9\\@from-enormous{--gc-start: 6;--gc-end: 9}}@media(max-width: 1799px){.u-gc-6\\/9\\@to-enormous{--gc-start: 6;--gc-end: 9}}@media(min-width: 1800px){.u-gc-6\\/10\\@from-enormous{--gc-start: 6;--gc-end: 10}}@media(max-width: 1799px){.u-gc-6\\/10\\@to-enormous{--gc-start: 6;--gc-end: 10}}@media(min-width: 1800px){.u-gc-6\\/11\\@from-enormous{--gc-start: 6;--gc-end: 11}}@media(max-width: 1799px){.u-gc-6\\/11\\@to-enormous{--gc-start: 6;--gc-end: 11}}@media(min-width: 1800px){.u-gc-6\\/12\\@from-enormous{--gc-start: 6;--gc-end: 12}}@media(max-width: 1799px){.u-gc-6\\/12\\@to-enormous{--gc-start: 6;--gc-end: 12}}@media(min-width: 1800px){.u-gc-6\\/13\\@from-enormous{--gc-start: 6;--gc-end: 13}}@media(max-width: 1799px){.u-gc-6\\/13\\@to-enormous{--gc-start: 6;--gc-end: 13}}@media(min-width: 1800px){.u-gc-7\\/1\\@from-enormous{--gc-start: 7;--gc-end: 1}}@media(max-width: 1799px){.u-gc-7\\/1\\@to-enormous{--gc-start: 7;--gc-end: 1}}@media(min-width: 1800px){.u-gc-7\\/2\\@from-enormous{--gc-start: 7;--gc-end: 2}}@media(max-width: 1799px){.u-gc-7\\/2\\@to-enormous{--gc-start: 7;--gc-end: 2}}@media(min-width: 1800px){.u-gc-7\\/3\\@from-enormous{--gc-start: 7;--gc-end: 3}}@media(max-width: 1799px){.u-gc-7\\/3\\@to-enormous{--gc-start: 7;--gc-end: 3}}@media(min-width: 1800px){.u-gc-7\\/4\\@from-enormous{--gc-start: 7;--gc-end: 4}}@media(max-width: 1799px){.u-gc-7\\/4\\@to-enormous{--gc-start: 7;--gc-end: 4}}@media(min-width: 1800px){.u-gc-7\\/5\\@from-enormous{--gc-start: 7;--gc-end: 5}}@media(max-width: 1799px){.u-gc-7\\/5\\@to-enormous{--gc-start: 7;--gc-end: 5}}@media(min-width: 1800px){.u-gc-7\\/6\\@from-enormous{--gc-start: 7;--gc-end: 6}}@media(max-width: 1799px){.u-gc-7\\/6\\@to-enormous{--gc-start: 7;--gc-end: 6}}@media(min-width: 1800px){.u-gc-7\\/7\\@from-enormous{--gc-start: 7;--gc-end: 7}}@media(max-width: 1799px){.u-gc-7\\/7\\@to-enormous{--gc-start: 7;--gc-end: 7}}@media(min-width: 1800px){.u-gc-7\\/8\\@from-enormous{--gc-start: 7;--gc-end: 8}}@media(max-width: 1799px){.u-gc-7\\/8\\@to-enormous{--gc-start: 7;--gc-end: 8}}@media(min-width: 1800px){.u-gc-7\\/9\\@from-enormous{--gc-start: 7;--gc-end: 9}}@media(max-width: 1799px){.u-gc-7\\/9\\@to-enormous{--gc-start: 7;--gc-end: 9}}@media(min-width: 1800px){.u-gc-7\\/10\\@from-enormous{--gc-start: 7;--gc-end: 10}}@media(max-width: 1799px){.u-gc-7\\/10\\@to-enormous{--gc-start: 7;--gc-end: 10}}@media(min-width: 1800px){.u-gc-7\\/11\\@from-enormous{--gc-start: 7;--gc-end: 11}}@media(max-width: 1799px){.u-gc-7\\/11\\@to-enormous{--gc-start: 7;--gc-end: 11}}@media(min-width: 1800px){.u-gc-7\\/12\\@from-enormous{--gc-start: 7;--gc-end: 12}}@media(max-width: 1799px){.u-gc-7\\/12\\@to-enormous{--gc-start: 7;--gc-end: 12}}@media(min-width: 1800px){.u-gc-7\\/13\\@from-enormous{--gc-start: 7;--gc-end: 13}}@media(max-width: 1799px){.u-gc-7\\/13\\@to-enormous{--gc-start: 7;--gc-end: 13}}@media(min-width: 1800px){.u-gc-8\\/1\\@from-enormous{--gc-start: 8;--gc-end: 1}}@media(max-width: 1799px){.u-gc-8\\/1\\@to-enormous{--gc-start: 8;--gc-end: 1}}@media(min-width: 1800px){.u-gc-8\\/2\\@from-enormous{--gc-start: 8;--gc-end: 2}}@media(max-width: 1799px){.u-gc-8\\/2\\@to-enormous{--gc-start: 8;--gc-end: 2}}@media(min-width: 1800px){.u-gc-8\\/3\\@from-enormous{--gc-start: 8;--gc-end: 3}}@media(max-width: 1799px){.u-gc-8\\/3\\@to-enormous{--gc-start: 8;--gc-end: 3}}@media(min-width: 1800px){.u-gc-8\\/4\\@from-enormous{--gc-start: 8;--gc-end: 4}}@media(max-width: 1799px){.u-gc-8\\/4\\@to-enormous{--gc-start: 8;--gc-end: 4}}@media(min-width: 1800px){.u-gc-8\\/5\\@from-enormous{--gc-start: 8;--gc-end: 5}}@media(max-width: 1799px){.u-gc-8\\/5\\@to-enormous{--gc-start: 8;--gc-end: 5}}@media(min-width: 1800px){.u-gc-8\\/6\\@from-enormous{--gc-start: 8;--gc-end: 6}}@media(max-width: 1799px){.u-gc-8\\/6\\@to-enormous{--gc-start: 8;--gc-end: 6}}@media(min-width: 1800px){.u-gc-8\\/7\\@from-enormous{--gc-start: 8;--gc-end: 7}}@media(max-width: 1799px){.u-gc-8\\/7\\@to-enormous{--gc-start: 8;--gc-end: 7}}@media(min-width: 1800px){.u-gc-8\\/8\\@from-enormous{--gc-start: 8;--gc-end: 8}}@media(max-width: 1799px){.u-gc-8\\/8\\@to-enormous{--gc-start: 8;--gc-end: 8}}@media(min-width: 1800px){.u-gc-8\\/9\\@from-enormous{--gc-start: 8;--gc-end: 9}}@media(max-width: 1799px){.u-gc-8\\/9\\@to-enormous{--gc-start: 8;--gc-end: 9}}@media(min-width: 1800px){.u-gc-8\\/10\\@from-enormous{--gc-start: 8;--gc-end: 10}}@media(max-width: 1799px){.u-gc-8\\/10\\@to-enormous{--gc-start: 8;--gc-end: 10}}@media(min-width: 1800px){.u-gc-8\\/11\\@from-enormous{--gc-start: 8;--gc-end: 11}}@media(max-width: 1799px){.u-gc-8\\/11\\@to-enormous{--gc-start: 8;--gc-end: 11}}@media(min-width: 1800px){.u-gc-8\\/12\\@from-enormous{--gc-start: 8;--gc-end: 12}}@media(max-width: 1799px){.u-gc-8\\/12\\@to-enormous{--gc-start: 8;--gc-end: 12}}@media(min-width: 1800px){.u-gc-8\\/13\\@from-enormous{--gc-start: 8;--gc-end: 13}}@media(max-width: 1799px){.u-gc-8\\/13\\@to-enormous{--gc-start: 8;--gc-end: 13}}@media(min-width: 1800px){.u-gc-9\\/1\\@from-enormous{--gc-start: 9;--gc-end: 1}}@media(max-width: 1799px){.u-gc-9\\/1\\@to-enormous{--gc-start: 9;--gc-end: 1}}@media(min-width: 1800px){.u-gc-9\\/2\\@from-enormous{--gc-start: 9;--gc-end: 2}}@media(max-width: 1799px){.u-gc-9\\/2\\@to-enormous{--gc-start: 9;--gc-end: 2}}@media(min-width: 1800px){.u-gc-9\\/3\\@from-enormous{--gc-start: 9;--gc-end: 3}}@media(max-width: 1799px){.u-gc-9\\/3\\@to-enormous{--gc-start: 9;--gc-end: 3}}@media(min-width: 1800px){.u-gc-9\\/4\\@from-enormous{--gc-start: 9;--gc-end: 4}}@media(max-width: 1799px){.u-gc-9\\/4\\@to-enormous{--gc-start: 9;--gc-end: 4}}@media(min-width: 1800px){.u-gc-9\\/5\\@from-enormous{--gc-start: 9;--gc-end: 5}}@media(max-width: 1799px){.u-gc-9\\/5\\@to-enormous{--gc-start: 9;--gc-end: 5}}@media(min-width: 1800px){.u-gc-9\\/6\\@from-enormous{--gc-start: 9;--gc-end: 6}}@media(max-width: 1799px){.u-gc-9\\/6\\@to-enormous{--gc-start: 9;--gc-end: 6}}@media(min-width: 1800px){.u-gc-9\\/7\\@from-enormous{--gc-start: 9;--gc-end: 7}}@media(max-width: 1799px){.u-gc-9\\/7\\@to-enormous{--gc-start: 9;--gc-end: 7}}@media(min-width: 1800px){.u-gc-9\\/8\\@from-enormous{--gc-start: 9;--gc-end: 8}}@media(max-width: 1799px){.u-gc-9\\/8\\@to-enormous{--gc-start: 9;--gc-end: 8}}@media(min-width: 1800px){.u-gc-9\\/9\\@from-enormous{--gc-start: 9;--gc-end: 9}}@media(max-width: 1799px){.u-gc-9\\/9\\@to-enormous{--gc-start: 9;--gc-end: 9}}@media(min-width: 1800px){.u-gc-9\\/10\\@from-enormous{--gc-start: 9;--gc-end: 10}}@media(max-width: 1799px){.u-gc-9\\/10\\@to-enormous{--gc-start: 9;--gc-end: 10}}@media(min-width: 1800px){.u-gc-9\\/11\\@from-enormous{--gc-start: 9;--gc-end: 11}}@media(max-width: 1799px){.u-gc-9\\/11\\@to-enormous{--gc-start: 9;--gc-end: 11}}@media(min-width: 1800px){.u-gc-9\\/12\\@from-enormous{--gc-start: 9;--gc-end: 12}}@media(max-width: 1799px){.u-gc-9\\/12\\@to-enormous{--gc-start: 9;--gc-end: 12}}@media(min-width: 1800px){.u-gc-9\\/13\\@from-enormous{--gc-start: 9;--gc-end: 13}}@media(max-width: 1799px){.u-gc-9\\/13\\@to-enormous{--gc-start: 9;--gc-end: 13}}@media(min-width: 1800px){.u-gc-10\\/1\\@from-enormous{--gc-start: 10;--gc-end: 1}}@media(max-width: 1799px){.u-gc-10\\/1\\@to-enormous{--gc-start: 10;--gc-end: 1}}@media(min-width: 1800px){.u-gc-10\\/2\\@from-enormous{--gc-start: 10;--gc-end: 2}}@media(max-width: 1799px){.u-gc-10\\/2\\@to-enormous{--gc-start: 10;--gc-end: 2}}@media(min-width: 1800px){.u-gc-10\\/3\\@from-enormous{--gc-start: 10;--gc-end: 3}}@media(max-width: 1799px){.u-gc-10\\/3\\@to-enormous{--gc-start: 10;--gc-end: 3}}@media(min-width: 1800px){.u-gc-10\\/4\\@from-enormous{--gc-start: 10;--gc-end: 4}}@media(max-width: 1799px){.u-gc-10\\/4\\@to-enormous{--gc-start: 10;--gc-end: 4}}@media(min-width: 1800px){.u-gc-10\\/5\\@from-enormous{--gc-start: 10;--gc-end: 5}}@media(max-width: 1799px){.u-gc-10\\/5\\@to-enormous{--gc-start: 10;--gc-end: 5}}@media(min-width: 1800px){.u-gc-10\\/6\\@from-enormous{--gc-start: 10;--gc-end: 6}}@media(max-width: 1799px){.u-gc-10\\/6\\@to-enormous{--gc-start: 10;--gc-end: 6}}@media(min-width: 1800px){.u-gc-10\\/7\\@from-enormous{--gc-start: 10;--gc-end: 7}}@media(max-width: 1799px){.u-gc-10\\/7\\@to-enormous{--gc-start: 10;--gc-end: 7}}@media(min-width: 1800px){.u-gc-10\\/8\\@from-enormous{--gc-start: 10;--gc-end: 8}}@media(max-width: 1799px){.u-gc-10\\/8\\@to-enormous{--gc-start: 10;--gc-end: 8}}@media(min-width: 1800px){.u-gc-10\\/9\\@from-enormous{--gc-start: 10;--gc-end: 9}}@media(max-width: 1799px){.u-gc-10\\/9\\@to-enormous{--gc-start: 10;--gc-end: 9}}@media(min-width: 1800px){.u-gc-10\\/10\\@from-enormous{--gc-start: 10;--gc-end: 10}}@media(max-width: 1799px){.u-gc-10\\/10\\@to-enormous{--gc-start: 10;--gc-end: 10}}@media(min-width: 1800px){.u-gc-10\\/11\\@from-enormous{--gc-start: 10;--gc-end: 11}}@media(max-width: 1799px){.u-gc-10\\/11\\@to-enormous{--gc-start: 10;--gc-end: 11}}@media(min-width: 1800px){.u-gc-10\\/12\\@from-enormous{--gc-start: 10;--gc-end: 12}}@media(max-width: 1799px){.u-gc-10\\/12\\@to-enormous{--gc-start: 10;--gc-end: 12}}@media(min-width: 1800px){.u-gc-10\\/13\\@from-enormous{--gc-start: 10;--gc-end: 13}}@media(max-width: 1799px){.u-gc-10\\/13\\@to-enormous{--gc-start: 10;--gc-end: 13}}@media(min-width: 1800px){.u-gc-11\\/1\\@from-enormous{--gc-start: 11;--gc-end: 1}}@media(max-width: 1799px){.u-gc-11\\/1\\@to-enormous{--gc-start: 11;--gc-end: 1}}@media(min-width: 1800px){.u-gc-11\\/2\\@from-enormous{--gc-start: 11;--gc-end: 2}}@media(max-width: 1799px){.u-gc-11\\/2\\@to-enormous{--gc-start: 11;--gc-end: 2}}@media(min-width: 1800px){.u-gc-11\\/3\\@from-enormous{--gc-start: 11;--gc-end: 3}}@media(max-width: 1799px){.u-gc-11\\/3\\@to-enormous{--gc-start: 11;--gc-end: 3}}@media(min-width: 1800px){.u-gc-11\\/4\\@from-enormous{--gc-start: 11;--gc-end: 4}}@media(max-width: 1799px){.u-gc-11\\/4\\@to-enormous{--gc-start: 11;--gc-end: 4}}@media(min-width: 1800px){.u-gc-11\\/5\\@from-enormous{--gc-start: 11;--gc-end: 5}}@media(max-width: 1799px){.u-gc-11\\/5\\@to-enormous{--gc-start: 11;--gc-end: 5}}@media(min-width: 1800px){.u-gc-11\\/6\\@from-enormous{--gc-start: 11;--gc-end: 6}}@media(max-width: 1799px){.u-gc-11\\/6\\@to-enormous{--gc-start: 11;--gc-end: 6}}@media(min-width: 1800px){.u-gc-11\\/7\\@from-enormous{--gc-start: 11;--gc-end: 7}}@media(max-width: 1799px){.u-gc-11\\/7\\@to-enormous{--gc-start: 11;--gc-end: 7}}@media(min-width: 1800px){.u-gc-11\\/8\\@from-enormous{--gc-start: 11;--gc-end: 8}}@media(max-width: 1799px){.u-gc-11\\/8\\@to-enormous{--gc-start: 11;--gc-end: 8}}@media(min-width: 1800px){.u-gc-11\\/9\\@from-enormous{--gc-start: 11;--gc-end: 9}}@media(max-width: 1799px){.u-gc-11\\/9\\@to-enormous{--gc-start: 11;--gc-end: 9}}@media(min-width: 1800px){.u-gc-11\\/10\\@from-enormous{--gc-start: 11;--gc-end: 10}}@media(max-width: 1799px){.u-gc-11\\/10\\@to-enormous{--gc-start: 11;--gc-end: 10}}@media(min-width: 1800px){.u-gc-11\\/11\\@from-enormous{--gc-start: 11;--gc-end: 11}}@media(max-width: 1799px){.u-gc-11\\/11\\@to-enormous{--gc-start: 11;--gc-end: 11}}@media(min-width: 1800px){.u-gc-11\\/12\\@from-enormous{--gc-start: 11;--gc-end: 12}}@media(max-width: 1799px){.u-gc-11\\/12\\@to-enormous{--gc-start: 11;--gc-end: 12}}@media(min-width: 1800px){.u-gc-11\\/13\\@from-enormous{--gc-start: 11;--gc-end: 13}}@media(max-width: 1799px){.u-gc-11\\/13\\@to-enormous{--gc-start: 11;--gc-end: 13}}@media(min-width: 1800px){.u-gc-12\\/1\\@from-enormous{--gc-start: 12;--gc-end: 1}}@media(max-width: 1799px){.u-gc-12\\/1\\@to-enormous{--gc-start: 12;--gc-end: 1}}@media(min-width: 1800px){.u-gc-12\\/2\\@from-enormous{--gc-start: 12;--gc-end: 2}}@media(max-width: 1799px){.u-gc-12\\/2\\@to-enormous{--gc-start: 12;--gc-end: 2}}@media(min-width: 1800px){.u-gc-12\\/3\\@from-enormous{--gc-start: 12;--gc-end: 3}}@media(max-width: 1799px){.u-gc-12\\/3\\@to-enormous{--gc-start: 12;--gc-end: 3}}@media(min-width: 1800px){.u-gc-12\\/4\\@from-enormous{--gc-start: 12;--gc-end: 4}}@media(max-width: 1799px){.u-gc-12\\/4\\@to-enormous{--gc-start: 12;--gc-end: 4}}@media(min-width: 1800px){.u-gc-12\\/5\\@from-enormous{--gc-start: 12;--gc-end: 5}}@media(max-width: 1799px){.u-gc-12\\/5\\@to-enormous{--gc-start: 12;--gc-end: 5}}@media(min-width: 1800px){.u-gc-12\\/6\\@from-enormous{--gc-start: 12;--gc-end: 6}}@media(max-width: 1799px){.u-gc-12\\/6\\@to-enormous{--gc-start: 12;--gc-end: 6}}@media(min-width: 1800px){.u-gc-12\\/7\\@from-enormous{--gc-start: 12;--gc-end: 7}}@media(max-width: 1799px){.u-gc-12\\/7\\@to-enormous{--gc-start: 12;--gc-end: 7}}@media(min-width: 1800px){.u-gc-12\\/8\\@from-enormous{--gc-start: 12;--gc-end: 8}}@media(max-width: 1799px){.u-gc-12\\/8\\@to-enormous{--gc-start: 12;--gc-end: 8}}@media(min-width: 1800px){.u-gc-12\\/9\\@from-enormous{--gc-start: 12;--gc-end: 9}}@media(max-width: 1799px){.u-gc-12\\/9\\@to-enormous{--gc-start: 12;--gc-end: 9}}@media(min-width: 1800px){.u-gc-12\\/10\\@from-enormous{--gc-start: 12;--gc-end: 10}}@media(max-width: 1799px){.u-gc-12\\/10\\@to-enormous{--gc-start: 12;--gc-end: 10}}@media(min-width: 1800px){.u-gc-12\\/11\\@from-enormous{--gc-start: 12;--gc-end: 11}}@media(max-width: 1799px){.u-gc-12\\/11\\@to-enormous{--gc-start: 12;--gc-end: 11}}@media(min-width: 1800px){.u-gc-12\\/12\\@from-enormous{--gc-start: 12;--gc-end: 12}}@media(max-width: 1799px){.u-gc-12\\/12\\@to-enormous{--gc-start: 12;--gc-end: 12}}@media(min-width: 1800px){.u-gc-12\\/13\\@from-enormous{--gc-start: 12;--gc-end: 13}}@media(max-width: 1799px){.u-gc-12\\/13\\@to-enormous{--gc-start: 12;--gc-end: 13}}@media(min-width: 1800px){.u-gc-13\\/1\\@from-enormous{--gc-start: 13;--gc-end: 1}}@media(max-width: 1799px){.u-gc-13\\/1\\@to-enormous{--gc-start: 13;--gc-end: 1}}@media(min-width: 1800px){.u-gc-13\\/2\\@from-enormous{--gc-start: 13;--gc-end: 2}}@media(max-width: 1799px){.u-gc-13\\/2\\@to-enormous{--gc-start: 13;--gc-end: 2}}@media(min-width: 1800px){.u-gc-13\\/3\\@from-enormous{--gc-start: 13;--gc-end: 3}}@media(max-width: 1799px){.u-gc-13\\/3\\@to-enormous{--gc-start: 13;--gc-end: 3}}@media(min-width: 1800px){.u-gc-13\\/4\\@from-enormous{--gc-start: 13;--gc-end: 4}}@media(max-width: 1799px){.u-gc-13\\/4\\@to-enormous{--gc-start: 13;--gc-end: 4}}@media(min-width: 1800px){.u-gc-13\\/5\\@from-enormous{--gc-start: 13;--gc-end: 5}}@media(max-width: 1799px){.u-gc-13\\/5\\@to-enormous{--gc-start: 13;--gc-end: 5}}@media(min-width: 1800px){.u-gc-13\\/6\\@from-enormous{--gc-start: 13;--gc-end: 6}}@media(max-width: 1799px){.u-gc-13\\/6\\@to-enormous{--gc-start: 13;--gc-end: 6}}@media(min-width: 1800px){.u-gc-13\\/7\\@from-enormous{--gc-start: 13;--gc-end: 7}}@media(max-width: 1799px){.u-gc-13\\/7\\@to-enormous{--gc-start: 13;--gc-end: 7}}@media(min-width: 1800px){.u-gc-13\\/8\\@from-enormous{--gc-start: 13;--gc-end: 8}}@media(max-width: 1799px){.u-gc-13\\/8\\@to-enormous{--gc-start: 13;--gc-end: 8}}@media(min-width: 1800px){.u-gc-13\\/9\\@from-enormous{--gc-start: 13;--gc-end: 9}}@media(max-width: 1799px){.u-gc-13\\/9\\@to-enormous{--gc-start: 13;--gc-end: 9}}@media(min-width: 1800px){.u-gc-13\\/10\\@from-enormous{--gc-start: 13;--gc-end: 10}}@media(max-width: 1799px){.u-gc-13\\/10\\@to-enormous{--gc-start: 13;--gc-end: 10}}@media(min-width: 1800px){.u-gc-13\\/11\\@from-enormous{--gc-start: 13;--gc-end: 11}}@media(max-width: 1799px){.u-gc-13\\/11\\@to-enormous{--gc-start: 13;--gc-end: 11}}@media(min-width: 1800px){.u-gc-13\\/12\\@from-enormous{--gc-start: 13;--gc-end: 12}}@media(max-width: 1799px){.u-gc-13\\/12\\@to-enormous{--gc-start: 13;--gc-end: 12}}@media(min-width: 1800px){.u-gc-13\\/13\\@from-enormous{--gc-start: 13;--gc-end: 13}}@media(max-width: 1799px){.u-gc-13\\/13\\@to-enormous{--gc-start: 13;--gc-end: 13}}@media(min-width: 2000px){.u-gc-1\\/1\\@from-gigantic{--gc-start: 1;--gc-end: 1}}@media(max-width: 1999px){.u-gc-1\\/1\\@to-gigantic{--gc-start: 1;--gc-end: 1}}@media(min-width: 2000px){.u-gc-1\\/2\\@from-gigantic{--gc-start: 1;--gc-end: 2}}@media(max-width: 1999px){.u-gc-1\\/2\\@to-gigantic{--gc-start: 1;--gc-end: 2}}@media(min-width: 2000px){.u-gc-1\\/3\\@from-gigantic{--gc-start: 1;--gc-end: 3}}@media(max-width: 1999px){.u-gc-1\\/3\\@to-gigantic{--gc-start: 1;--gc-end: 3}}@media(min-width: 2000px){.u-gc-1\\/4\\@from-gigantic{--gc-start: 1;--gc-end: 4}}@media(max-width: 1999px){.u-gc-1\\/4\\@to-gigantic{--gc-start: 1;--gc-end: 4}}@media(min-width: 2000px){.u-gc-1\\/5\\@from-gigantic{--gc-start: 1;--gc-end: 5}}@media(max-width: 1999px){.u-gc-1\\/5\\@to-gigantic{--gc-start: 1;--gc-end: 5}}@media(min-width: 2000px){.u-gc-1\\/6\\@from-gigantic{--gc-start: 1;--gc-end: 6}}@media(max-width: 1999px){.u-gc-1\\/6\\@to-gigantic{--gc-start: 1;--gc-end: 6}}@media(min-width: 2000px){.u-gc-1\\/7\\@from-gigantic{--gc-start: 1;--gc-end: 7}}@media(max-width: 1999px){.u-gc-1\\/7\\@to-gigantic{--gc-start: 1;--gc-end: 7}}@media(min-width: 2000px){.u-gc-1\\/8\\@from-gigantic{--gc-start: 1;--gc-end: 8}}@media(max-width: 1999px){.u-gc-1\\/8\\@to-gigantic{--gc-start: 1;--gc-end: 8}}@media(min-width: 2000px){.u-gc-1\\/9\\@from-gigantic{--gc-start: 1;--gc-end: 9}}@media(max-width: 1999px){.u-gc-1\\/9\\@to-gigantic{--gc-start: 1;--gc-end: 9}}@media(min-width: 2000px){.u-gc-1\\/10\\@from-gigantic{--gc-start: 1;--gc-end: 10}}@media(max-width: 1999px){.u-gc-1\\/10\\@to-gigantic{--gc-start: 1;--gc-end: 10}}@media(min-width: 2000px){.u-gc-1\\/11\\@from-gigantic{--gc-start: 1;--gc-end: 11}}@media(max-width: 1999px){.u-gc-1\\/11\\@to-gigantic{--gc-start: 1;--gc-end: 11}}@media(min-width: 2000px){.u-gc-1\\/12\\@from-gigantic{--gc-start: 1;--gc-end: 12}}@media(max-width: 1999px){.u-gc-1\\/12\\@to-gigantic{--gc-start: 1;--gc-end: 12}}@media(min-width: 2000px){.u-gc-1\\/13\\@from-gigantic{--gc-start: 1;--gc-end: 13}}@media(max-width: 1999px){.u-gc-1\\/13\\@to-gigantic{--gc-start: 1;--gc-end: 13}}@media(min-width: 2000px){.u-gc-2\\/1\\@from-gigantic{--gc-start: 2;--gc-end: 1}}@media(max-width: 1999px){.u-gc-2\\/1\\@to-gigantic{--gc-start: 2;--gc-end: 1}}@media(min-width: 2000px){.u-gc-2\\/2\\@from-gigantic{--gc-start: 2;--gc-end: 2}}@media(max-width: 1999px){.u-gc-2\\/2\\@to-gigantic{--gc-start: 2;--gc-end: 2}}@media(min-width: 2000px){.u-gc-2\\/3\\@from-gigantic{--gc-start: 2;--gc-end: 3}}@media(max-width: 1999px){.u-gc-2\\/3\\@to-gigantic{--gc-start: 2;--gc-end: 3}}@media(min-width: 2000px){.u-gc-2\\/4\\@from-gigantic{--gc-start: 2;--gc-end: 4}}@media(max-width: 1999px){.u-gc-2\\/4\\@to-gigantic{--gc-start: 2;--gc-end: 4}}@media(min-width: 2000px){.u-gc-2\\/5\\@from-gigantic{--gc-start: 2;--gc-end: 5}}@media(max-width: 1999px){.u-gc-2\\/5\\@to-gigantic{--gc-start: 2;--gc-end: 5}}@media(min-width: 2000px){.u-gc-2\\/6\\@from-gigantic{--gc-start: 2;--gc-end: 6}}@media(max-width: 1999px){.u-gc-2\\/6\\@to-gigantic{--gc-start: 2;--gc-end: 6}}@media(min-width: 2000px){.u-gc-2\\/7\\@from-gigantic{--gc-start: 2;--gc-end: 7}}@media(max-width: 1999px){.u-gc-2\\/7\\@to-gigantic{--gc-start: 2;--gc-end: 7}}@media(min-width: 2000px){.u-gc-2\\/8\\@from-gigantic{--gc-start: 2;--gc-end: 8}}@media(max-width: 1999px){.u-gc-2\\/8\\@to-gigantic{--gc-start: 2;--gc-end: 8}}@media(min-width: 2000px){.u-gc-2\\/9\\@from-gigantic{--gc-start: 2;--gc-end: 9}}@media(max-width: 1999px){.u-gc-2\\/9\\@to-gigantic{--gc-start: 2;--gc-end: 9}}@media(min-width: 2000px){.u-gc-2\\/10\\@from-gigantic{--gc-start: 2;--gc-end: 10}}@media(max-width: 1999px){.u-gc-2\\/10\\@to-gigantic{--gc-start: 2;--gc-end: 10}}@media(min-width: 2000px){.u-gc-2\\/11\\@from-gigantic{--gc-start: 2;--gc-end: 11}}@media(max-width: 1999px){.u-gc-2\\/11\\@to-gigantic{--gc-start: 2;--gc-end: 11}}@media(min-width: 2000px){.u-gc-2\\/12\\@from-gigantic{--gc-start: 2;--gc-end: 12}}@media(max-width: 1999px){.u-gc-2\\/12\\@to-gigantic{--gc-start: 2;--gc-end: 12}}@media(min-width: 2000px){.u-gc-2\\/13\\@from-gigantic{--gc-start: 2;--gc-end: 13}}@media(max-width: 1999px){.u-gc-2\\/13\\@to-gigantic{--gc-start: 2;--gc-end: 13}}@media(min-width: 2000px){.u-gc-3\\/1\\@from-gigantic{--gc-start: 3;--gc-end: 1}}@media(max-width: 1999px){.u-gc-3\\/1\\@to-gigantic{--gc-start: 3;--gc-end: 1}}@media(min-width: 2000px){.u-gc-3\\/2\\@from-gigantic{--gc-start: 3;--gc-end: 2}}@media(max-width: 1999px){.u-gc-3\\/2\\@to-gigantic{--gc-start: 3;--gc-end: 2}}@media(min-width: 2000px){.u-gc-3\\/3\\@from-gigantic{--gc-start: 3;--gc-end: 3}}@media(max-width: 1999px){.u-gc-3\\/3\\@to-gigantic{--gc-start: 3;--gc-end: 3}}@media(min-width: 2000px){.u-gc-3\\/4\\@from-gigantic{--gc-start: 3;--gc-end: 4}}@media(max-width: 1999px){.u-gc-3\\/4\\@to-gigantic{--gc-start: 3;--gc-end: 4}}@media(min-width: 2000px){.u-gc-3\\/5\\@from-gigantic{--gc-start: 3;--gc-end: 5}}@media(max-width: 1999px){.u-gc-3\\/5\\@to-gigantic{--gc-start: 3;--gc-end: 5}}@media(min-width: 2000px){.u-gc-3\\/6\\@from-gigantic{--gc-start: 3;--gc-end: 6}}@media(max-width: 1999px){.u-gc-3\\/6\\@to-gigantic{--gc-start: 3;--gc-end: 6}}@media(min-width: 2000px){.u-gc-3\\/7\\@from-gigantic{--gc-start: 3;--gc-end: 7}}@media(max-width: 1999px){.u-gc-3\\/7\\@to-gigantic{--gc-start: 3;--gc-end: 7}}@media(min-width: 2000px){.u-gc-3\\/8\\@from-gigantic{--gc-start: 3;--gc-end: 8}}@media(max-width: 1999px){.u-gc-3\\/8\\@to-gigantic{--gc-start: 3;--gc-end: 8}}@media(min-width: 2000px){.u-gc-3\\/9\\@from-gigantic{--gc-start: 3;--gc-end: 9}}@media(max-width: 1999px){.u-gc-3\\/9\\@to-gigantic{--gc-start: 3;--gc-end: 9}}@media(min-width: 2000px){.u-gc-3\\/10\\@from-gigantic{--gc-start: 3;--gc-end: 10}}@media(max-width: 1999px){.u-gc-3\\/10\\@to-gigantic{--gc-start: 3;--gc-end: 10}}@media(min-width: 2000px){.u-gc-3\\/11\\@from-gigantic{--gc-start: 3;--gc-end: 11}}@media(max-width: 1999px){.u-gc-3\\/11\\@to-gigantic{--gc-start: 3;--gc-end: 11}}@media(min-width: 2000px){.u-gc-3\\/12\\@from-gigantic{--gc-start: 3;--gc-end: 12}}@media(max-width: 1999px){.u-gc-3\\/12\\@to-gigantic{--gc-start: 3;--gc-end: 12}}@media(min-width: 2000px){.u-gc-3\\/13\\@from-gigantic{--gc-start: 3;--gc-end: 13}}@media(max-width: 1999px){.u-gc-3\\/13\\@to-gigantic{--gc-start: 3;--gc-end: 13}}@media(min-width: 2000px){.u-gc-4\\/1\\@from-gigantic{--gc-start: 4;--gc-end: 1}}@media(max-width: 1999px){.u-gc-4\\/1\\@to-gigantic{--gc-start: 4;--gc-end: 1}}@media(min-width: 2000px){.u-gc-4\\/2\\@from-gigantic{--gc-start: 4;--gc-end: 2}}@media(max-width: 1999px){.u-gc-4\\/2\\@to-gigantic{--gc-start: 4;--gc-end: 2}}@media(min-width: 2000px){.u-gc-4\\/3\\@from-gigantic{--gc-start: 4;--gc-end: 3}}@media(max-width: 1999px){.u-gc-4\\/3\\@to-gigantic{--gc-start: 4;--gc-end: 3}}@media(min-width: 2000px){.u-gc-4\\/4\\@from-gigantic{--gc-start: 4;--gc-end: 4}}@media(max-width: 1999px){.u-gc-4\\/4\\@to-gigantic{--gc-start: 4;--gc-end: 4}}@media(min-width: 2000px){.u-gc-4\\/5\\@from-gigantic{--gc-start: 4;--gc-end: 5}}@media(max-width: 1999px){.u-gc-4\\/5\\@to-gigantic{--gc-start: 4;--gc-end: 5}}@media(min-width: 2000px){.u-gc-4\\/6\\@from-gigantic{--gc-start: 4;--gc-end: 6}}@media(max-width: 1999px){.u-gc-4\\/6\\@to-gigantic{--gc-start: 4;--gc-end: 6}}@media(min-width: 2000px){.u-gc-4\\/7\\@from-gigantic{--gc-start: 4;--gc-end: 7}}@media(max-width: 1999px){.u-gc-4\\/7\\@to-gigantic{--gc-start: 4;--gc-end: 7}}@media(min-width: 2000px){.u-gc-4\\/8\\@from-gigantic{--gc-start: 4;--gc-end: 8}}@media(max-width: 1999px){.u-gc-4\\/8\\@to-gigantic{--gc-start: 4;--gc-end: 8}}@media(min-width: 2000px){.u-gc-4\\/9\\@from-gigantic{--gc-start: 4;--gc-end: 9}}@media(max-width: 1999px){.u-gc-4\\/9\\@to-gigantic{--gc-start: 4;--gc-end: 9}}@media(min-width: 2000px){.u-gc-4\\/10\\@from-gigantic{--gc-start: 4;--gc-end: 10}}@media(max-width: 1999px){.u-gc-4\\/10\\@to-gigantic{--gc-start: 4;--gc-end: 10}}@media(min-width: 2000px){.u-gc-4\\/11\\@from-gigantic{--gc-start: 4;--gc-end: 11}}@media(max-width: 1999px){.u-gc-4\\/11\\@to-gigantic{--gc-start: 4;--gc-end: 11}}@media(min-width: 2000px){.u-gc-4\\/12\\@from-gigantic{--gc-start: 4;--gc-end: 12}}@media(max-width: 1999px){.u-gc-4\\/12\\@to-gigantic{--gc-start: 4;--gc-end: 12}}@media(min-width: 2000px){.u-gc-4\\/13\\@from-gigantic{--gc-start: 4;--gc-end: 13}}@media(max-width: 1999px){.u-gc-4\\/13\\@to-gigantic{--gc-start: 4;--gc-end: 13}}@media(min-width: 2000px){.u-gc-5\\/1\\@from-gigantic{--gc-start: 5;--gc-end: 1}}@media(max-width: 1999px){.u-gc-5\\/1\\@to-gigantic{--gc-start: 5;--gc-end: 1}}@media(min-width: 2000px){.u-gc-5\\/2\\@from-gigantic{--gc-start: 5;--gc-end: 2}}@media(max-width: 1999px){.u-gc-5\\/2\\@to-gigantic{--gc-start: 5;--gc-end: 2}}@media(min-width: 2000px){.u-gc-5\\/3\\@from-gigantic{--gc-start: 5;--gc-end: 3}}@media(max-width: 1999px){.u-gc-5\\/3\\@to-gigantic{--gc-start: 5;--gc-end: 3}}@media(min-width: 2000px){.u-gc-5\\/4\\@from-gigantic{--gc-start: 5;--gc-end: 4}}@media(max-width: 1999px){.u-gc-5\\/4\\@to-gigantic{--gc-start: 5;--gc-end: 4}}@media(min-width: 2000px){.u-gc-5\\/5\\@from-gigantic{--gc-start: 5;--gc-end: 5}}@media(max-width: 1999px){.u-gc-5\\/5\\@to-gigantic{--gc-start: 5;--gc-end: 5}}@media(min-width: 2000px){.u-gc-5\\/6\\@from-gigantic{--gc-start: 5;--gc-end: 6}}@media(max-width: 1999px){.u-gc-5\\/6\\@to-gigantic{--gc-start: 5;--gc-end: 6}}@media(min-width: 2000px){.u-gc-5\\/7\\@from-gigantic{--gc-start: 5;--gc-end: 7}}@media(max-width: 1999px){.u-gc-5\\/7\\@to-gigantic{--gc-start: 5;--gc-end: 7}}@media(min-width: 2000px){.u-gc-5\\/8\\@from-gigantic{--gc-start: 5;--gc-end: 8}}@media(max-width: 1999px){.u-gc-5\\/8\\@to-gigantic{--gc-start: 5;--gc-end: 8}}@media(min-width: 2000px){.u-gc-5\\/9\\@from-gigantic{--gc-start: 5;--gc-end: 9}}@media(max-width: 1999px){.u-gc-5\\/9\\@to-gigantic{--gc-start: 5;--gc-end: 9}}@media(min-width: 2000px){.u-gc-5\\/10\\@from-gigantic{--gc-start: 5;--gc-end: 10}}@media(max-width: 1999px){.u-gc-5\\/10\\@to-gigantic{--gc-start: 5;--gc-end: 10}}@media(min-width: 2000px){.u-gc-5\\/11\\@from-gigantic{--gc-start: 5;--gc-end: 11}}@media(max-width: 1999px){.u-gc-5\\/11\\@to-gigantic{--gc-start: 5;--gc-end: 11}}@media(min-width: 2000px){.u-gc-5\\/12\\@from-gigantic{--gc-start: 5;--gc-end: 12}}@media(max-width: 1999px){.u-gc-5\\/12\\@to-gigantic{--gc-start: 5;--gc-end: 12}}@media(min-width: 2000px){.u-gc-5\\/13\\@from-gigantic{--gc-start: 5;--gc-end: 13}}@media(max-width: 1999px){.u-gc-5\\/13\\@to-gigantic{--gc-start: 5;--gc-end: 13}}@media(min-width: 2000px){.u-gc-6\\/1\\@from-gigantic{--gc-start: 6;--gc-end: 1}}@media(max-width: 1999px){.u-gc-6\\/1\\@to-gigantic{--gc-start: 6;--gc-end: 1}}@media(min-width: 2000px){.u-gc-6\\/2\\@from-gigantic{--gc-start: 6;--gc-end: 2}}@media(max-width: 1999px){.u-gc-6\\/2\\@to-gigantic{--gc-start: 6;--gc-end: 2}}@media(min-width: 2000px){.u-gc-6\\/3\\@from-gigantic{--gc-start: 6;--gc-end: 3}}@media(max-width: 1999px){.u-gc-6\\/3\\@to-gigantic{--gc-start: 6;--gc-end: 3}}@media(min-width: 2000px){.u-gc-6\\/4\\@from-gigantic{--gc-start: 6;--gc-end: 4}}@media(max-width: 1999px){.u-gc-6\\/4\\@to-gigantic{--gc-start: 6;--gc-end: 4}}@media(min-width: 2000px){.u-gc-6\\/5\\@from-gigantic{--gc-start: 6;--gc-end: 5}}@media(max-width: 1999px){.u-gc-6\\/5\\@to-gigantic{--gc-start: 6;--gc-end: 5}}@media(min-width: 2000px){.u-gc-6\\/6\\@from-gigantic{--gc-start: 6;--gc-end: 6}}@media(max-width: 1999px){.u-gc-6\\/6\\@to-gigantic{--gc-start: 6;--gc-end: 6}}@media(min-width: 2000px){.u-gc-6\\/7\\@from-gigantic{--gc-start: 6;--gc-end: 7}}@media(max-width: 1999px){.u-gc-6\\/7\\@to-gigantic{--gc-start: 6;--gc-end: 7}}@media(min-width: 2000px){.u-gc-6\\/8\\@from-gigantic{--gc-start: 6;--gc-end: 8}}@media(max-width: 1999px){.u-gc-6\\/8\\@to-gigantic{--gc-start: 6;--gc-end: 8}}@media(min-width: 2000px){.u-gc-6\\/9\\@from-gigantic{--gc-start: 6;--gc-end: 9}}@media(max-width: 1999px){.u-gc-6\\/9\\@to-gigantic{--gc-start: 6;--gc-end: 9}}@media(min-width: 2000px){.u-gc-6\\/10\\@from-gigantic{--gc-start: 6;--gc-end: 10}}@media(max-width: 1999px){.u-gc-6\\/10\\@to-gigantic{--gc-start: 6;--gc-end: 10}}@media(min-width: 2000px){.u-gc-6\\/11\\@from-gigantic{--gc-start: 6;--gc-end: 11}}@media(max-width: 1999px){.u-gc-6\\/11\\@to-gigantic{--gc-start: 6;--gc-end: 11}}@media(min-width: 2000px){.u-gc-6\\/12\\@from-gigantic{--gc-start: 6;--gc-end: 12}}@media(max-width: 1999px){.u-gc-6\\/12\\@to-gigantic{--gc-start: 6;--gc-end: 12}}@media(min-width: 2000px){.u-gc-6\\/13\\@from-gigantic{--gc-start: 6;--gc-end: 13}}@media(max-width: 1999px){.u-gc-6\\/13\\@to-gigantic{--gc-start: 6;--gc-end: 13}}@media(min-width: 2000px){.u-gc-7\\/1\\@from-gigantic{--gc-start: 7;--gc-end: 1}}@media(max-width: 1999px){.u-gc-7\\/1\\@to-gigantic{--gc-start: 7;--gc-end: 1}}@media(min-width: 2000px){.u-gc-7\\/2\\@from-gigantic{--gc-start: 7;--gc-end: 2}}@media(max-width: 1999px){.u-gc-7\\/2\\@to-gigantic{--gc-start: 7;--gc-end: 2}}@media(min-width: 2000px){.u-gc-7\\/3\\@from-gigantic{--gc-start: 7;--gc-end: 3}}@media(max-width: 1999px){.u-gc-7\\/3\\@to-gigantic{--gc-start: 7;--gc-end: 3}}@media(min-width: 2000px){.u-gc-7\\/4\\@from-gigantic{--gc-start: 7;--gc-end: 4}}@media(max-width: 1999px){.u-gc-7\\/4\\@to-gigantic{--gc-start: 7;--gc-end: 4}}@media(min-width: 2000px){.u-gc-7\\/5\\@from-gigantic{--gc-start: 7;--gc-end: 5}}@media(max-width: 1999px){.u-gc-7\\/5\\@to-gigantic{--gc-start: 7;--gc-end: 5}}@media(min-width: 2000px){.u-gc-7\\/6\\@from-gigantic{--gc-start: 7;--gc-end: 6}}@media(max-width: 1999px){.u-gc-7\\/6\\@to-gigantic{--gc-start: 7;--gc-end: 6}}@media(min-width: 2000px){.u-gc-7\\/7\\@from-gigantic{--gc-start: 7;--gc-end: 7}}@media(max-width: 1999px){.u-gc-7\\/7\\@to-gigantic{--gc-start: 7;--gc-end: 7}}@media(min-width: 2000px){.u-gc-7\\/8\\@from-gigantic{--gc-start: 7;--gc-end: 8}}@media(max-width: 1999px){.u-gc-7\\/8\\@to-gigantic{--gc-start: 7;--gc-end: 8}}@media(min-width: 2000px){.u-gc-7\\/9\\@from-gigantic{--gc-start: 7;--gc-end: 9}}@media(max-width: 1999px){.u-gc-7\\/9\\@to-gigantic{--gc-start: 7;--gc-end: 9}}@media(min-width: 2000px){.u-gc-7\\/10\\@from-gigantic{--gc-start: 7;--gc-end: 10}}@media(max-width: 1999px){.u-gc-7\\/10\\@to-gigantic{--gc-start: 7;--gc-end: 10}}@media(min-width: 2000px){.u-gc-7\\/11\\@from-gigantic{--gc-start: 7;--gc-end: 11}}@media(max-width: 1999px){.u-gc-7\\/11\\@to-gigantic{--gc-start: 7;--gc-end: 11}}@media(min-width: 2000px){.u-gc-7\\/12\\@from-gigantic{--gc-start: 7;--gc-end: 12}}@media(max-width: 1999px){.u-gc-7\\/12\\@to-gigantic{--gc-start: 7;--gc-end: 12}}@media(min-width: 2000px){.u-gc-7\\/13\\@from-gigantic{--gc-start: 7;--gc-end: 13}}@media(max-width: 1999px){.u-gc-7\\/13\\@to-gigantic{--gc-start: 7;--gc-end: 13}}@media(min-width: 2000px){.u-gc-8\\/1\\@from-gigantic{--gc-start: 8;--gc-end: 1}}@media(max-width: 1999px){.u-gc-8\\/1\\@to-gigantic{--gc-start: 8;--gc-end: 1}}@media(min-width: 2000px){.u-gc-8\\/2\\@from-gigantic{--gc-start: 8;--gc-end: 2}}@media(max-width: 1999px){.u-gc-8\\/2\\@to-gigantic{--gc-start: 8;--gc-end: 2}}@media(min-width: 2000px){.u-gc-8\\/3\\@from-gigantic{--gc-start: 8;--gc-end: 3}}@media(max-width: 1999px){.u-gc-8\\/3\\@to-gigantic{--gc-start: 8;--gc-end: 3}}@media(min-width: 2000px){.u-gc-8\\/4\\@from-gigantic{--gc-start: 8;--gc-end: 4}}@media(max-width: 1999px){.u-gc-8\\/4\\@to-gigantic{--gc-start: 8;--gc-end: 4}}@media(min-width: 2000px){.u-gc-8\\/5\\@from-gigantic{--gc-start: 8;--gc-end: 5}}@media(max-width: 1999px){.u-gc-8\\/5\\@to-gigantic{--gc-start: 8;--gc-end: 5}}@media(min-width: 2000px){.u-gc-8\\/6\\@from-gigantic{--gc-start: 8;--gc-end: 6}}@media(max-width: 1999px){.u-gc-8\\/6\\@to-gigantic{--gc-start: 8;--gc-end: 6}}@media(min-width: 2000px){.u-gc-8\\/7\\@from-gigantic{--gc-start: 8;--gc-end: 7}}@media(max-width: 1999px){.u-gc-8\\/7\\@to-gigantic{--gc-start: 8;--gc-end: 7}}@media(min-width: 2000px){.u-gc-8\\/8\\@from-gigantic{--gc-start: 8;--gc-end: 8}}@media(max-width: 1999px){.u-gc-8\\/8\\@to-gigantic{--gc-start: 8;--gc-end: 8}}@media(min-width: 2000px){.u-gc-8\\/9\\@from-gigantic{--gc-start: 8;--gc-end: 9}}@media(max-width: 1999px){.u-gc-8\\/9\\@to-gigantic{--gc-start: 8;--gc-end: 9}}@media(min-width: 2000px){.u-gc-8\\/10\\@from-gigantic{--gc-start: 8;--gc-end: 10}}@media(max-width: 1999px){.u-gc-8\\/10\\@to-gigantic{--gc-start: 8;--gc-end: 10}}@media(min-width: 2000px){.u-gc-8\\/11\\@from-gigantic{--gc-start: 8;--gc-end: 11}}@media(max-width: 1999px){.u-gc-8\\/11\\@to-gigantic{--gc-start: 8;--gc-end: 11}}@media(min-width: 2000px){.u-gc-8\\/12\\@from-gigantic{--gc-start: 8;--gc-end: 12}}@media(max-width: 1999px){.u-gc-8\\/12\\@to-gigantic{--gc-start: 8;--gc-end: 12}}@media(min-width: 2000px){.u-gc-8\\/13\\@from-gigantic{--gc-start: 8;--gc-end: 13}}@media(max-width: 1999px){.u-gc-8\\/13\\@to-gigantic{--gc-start: 8;--gc-end: 13}}@media(min-width: 2000px){.u-gc-9\\/1\\@from-gigantic{--gc-start: 9;--gc-end: 1}}@media(max-width: 1999px){.u-gc-9\\/1\\@to-gigantic{--gc-start: 9;--gc-end: 1}}@media(min-width: 2000px){.u-gc-9\\/2\\@from-gigantic{--gc-start: 9;--gc-end: 2}}@media(max-width: 1999px){.u-gc-9\\/2\\@to-gigantic{--gc-start: 9;--gc-end: 2}}@media(min-width: 2000px){.u-gc-9\\/3\\@from-gigantic{--gc-start: 9;--gc-end: 3}}@media(max-width: 1999px){.u-gc-9\\/3\\@to-gigantic{--gc-start: 9;--gc-end: 3}}@media(min-width: 2000px){.u-gc-9\\/4\\@from-gigantic{--gc-start: 9;--gc-end: 4}}@media(max-width: 1999px){.u-gc-9\\/4\\@to-gigantic{--gc-start: 9;--gc-end: 4}}@media(min-width: 2000px){.u-gc-9\\/5\\@from-gigantic{--gc-start: 9;--gc-end: 5}}@media(max-width: 1999px){.u-gc-9\\/5\\@to-gigantic{--gc-start: 9;--gc-end: 5}}@media(min-width: 2000px){.u-gc-9\\/6\\@from-gigantic{--gc-start: 9;--gc-end: 6}}@media(max-width: 1999px){.u-gc-9\\/6\\@to-gigantic{--gc-start: 9;--gc-end: 6}}@media(min-width: 2000px){.u-gc-9\\/7\\@from-gigantic{--gc-start: 9;--gc-end: 7}}@media(max-width: 1999px){.u-gc-9\\/7\\@to-gigantic{--gc-start: 9;--gc-end: 7}}@media(min-width: 2000px){.u-gc-9\\/8\\@from-gigantic{--gc-start: 9;--gc-end: 8}}@media(max-width: 1999px){.u-gc-9\\/8\\@to-gigantic{--gc-start: 9;--gc-end: 8}}@media(min-width: 2000px){.u-gc-9\\/9\\@from-gigantic{--gc-start: 9;--gc-end: 9}}@media(max-width: 1999px){.u-gc-9\\/9\\@to-gigantic{--gc-start: 9;--gc-end: 9}}@media(min-width: 2000px){.u-gc-9\\/10\\@from-gigantic{--gc-start: 9;--gc-end: 10}}@media(max-width: 1999px){.u-gc-9\\/10\\@to-gigantic{--gc-start: 9;--gc-end: 10}}@media(min-width: 2000px){.u-gc-9\\/11\\@from-gigantic{--gc-start: 9;--gc-end: 11}}@media(max-width: 1999px){.u-gc-9\\/11\\@to-gigantic{--gc-start: 9;--gc-end: 11}}@media(min-width: 2000px){.u-gc-9\\/12\\@from-gigantic{--gc-start: 9;--gc-end: 12}}@media(max-width: 1999px){.u-gc-9\\/12\\@to-gigantic{--gc-start: 9;--gc-end: 12}}@media(min-width: 2000px){.u-gc-9\\/13\\@from-gigantic{--gc-start: 9;--gc-end: 13}}@media(max-width: 1999px){.u-gc-9\\/13\\@to-gigantic{--gc-start: 9;--gc-end: 13}}@media(min-width: 2000px){.u-gc-10\\/1\\@from-gigantic{--gc-start: 10;--gc-end: 1}}@media(max-width: 1999px){.u-gc-10\\/1\\@to-gigantic{--gc-start: 10;--gc-end: 1}}@media(min-width: 2000px){.u-gc-10\\/2\\@from-gigantic{--gc-start: 10;--gc-end: 2}}@media(max-width: 1999px){.u-gc-10\\/2\\@to-gigantic{--gc-start: 10;--gc-end: 2}}@media(min-width: 2000px){.u-gc-10\\/3\\@from-gigantic{--gc-start: 10;--gc-end: 3}}@media(max-width: 1999px){.u-gc-10\\/3\\@to-gigantic{--gc-start: 10;--gc-end: 3}}@media(min-width: 2000px){.u-gc-10\\/4\\@from-gigantic{--gc-start: 10;--gc-end: 4}}@media(max-width: 1999px){.u-gc-10\\/4\\@to-gigantic{--gc-start: 10;--gc-end: 4}}@media(min-width: 2000px){.u-gc-10\\/5\\@from-gigantic{--gc-start: 10;--gc-end: 5}}@media(max-width: 1999px){.u-gc-10\\/5\\@to-gigantic{--gc-start: 10;--gc-end: 5}}@media(min-width: 2000px){.u-gc-10\\/6\\@from-gigantic{--gc-start: 10;--gc-end: 6}}@media(max-width: 1999px){.u-gc-10\\/6\\@to-gigantic{--gc-start: 10;--gc-end: 6}}@media(min-width: 2000px){.u-gc-10\\/7\\@from-gigantic{--gc-start: 10;--gc-end: 7}}@media(max-width: 1999px){.u-gc-10\\/7\\@to-gigantic{--gc-start: 10;--gc-end: 7}}@media(min-width: 2000px){.u-gc-10\\/8\\@from-gigantic{--gc-start: 10;--gc-end: 8}}@media(max-width: 1999px){.u-gc-10\\/8\\@to-gigantic{--gc-start: 10;--gc-end: 8}}@media(min-width: 2000px){.u-gc-10\\/9\\@from-gigantic{--gc-start: 10;--gc-end: 9}}@media(max-width: 1999px){.u-gc-10\\/9\\@to-gigantic{--gc-start: 10;--gc-end: 9}}@media(min-width: 2000px){.u-gc-10\\/10\\@from-gigantic{--gc-start: 10;--gc-end: 10}}@media(max-width: 1999px){.u-gc-10\\/10\\@to-gigantic{--gc-start: 10;--gc-end: 10}}@media(min-width: 2000px){.u-gc-10\\/11\\@from-gigantic{--gc-start: 10;--gc-end: 11}}@media(max-width: 1999px){.u-gc-10\\/11\\@to-gigantic{--gc-start: 10;--gc-end: 11}}@media(min-width: 2000px){.u-gc-10\\/12\\@from-gigantic{--gc-start: 10;--gc-end: 12}}@media(max-width: 1999px){.u-gc-10\\/12\\@to-gigantic{--gc-start: 10;--gc-end: 12}}@media(min-width: 2000px){.u-gc-10\\/13\\@from-gigantic{--gc-start: 10;--gc-end: 13}}@media(max-width: 1999px){.u-gc-10\\/13\\@to-gigantic{--gc-start: 10;--gc-end: 13}}@media(min-width: 2000px){.u-gc-11\\/1\\@from-gigantic{--gc-start: 11;--gc-end: 1}}@media(max-width: 1999px){.u-gc-11\\/1\\@to-gigantic{--gc-start: 11;--gc-end: 1}}@media(min-width: 2000px){.u-gc-11\\/2\\@from-gigantic{--gc-start: 11;--gc-end: 2}}@media(max-width: 1999px){.u-gc-11\\/2\\@to-gigantic{--gc-start: 11;--gc-end: 2}}@media(min-width: 2000px){.u-gc-11\\/3\\@from-gigantic{--gc-start: 11;--gc-end: 3}}@media(max-width: 1999px){.u-gc-11\\/3\\@to-gigantic{--gc-start: 11;--gc-end: 3}}@media(min-width: 2000px){.u-gc-11\\/4\\@from-gigantic{--gc-start: 11;--gc-end: 4}}@media(max-width: 1999px){.u-gc-11\\/4\\@to-gigantic{--gc-start: 11;--gc-end: 4}}@media(min-width: 2000px){.u-gc-11\\/5\\@from-gigantic{--gc-start: 11;--gc-end: 5}}@media(max-width: 1999px){.u-gc-11\\/5\\@to-gigantic{--gc-start: 11;--gc-end: 5}}@media(min-width: 2000px){.u-gc-11\\/6\\@from-gigantic{--gc-start: 11;--gc-end: 6}}@media(max-width: 1999px){.u-gc-11\\/6\\@to-gigantic{--gc-start: 11;--gc-end: 6}}@media(min-width: 2000px){.u-gc-11\\/7\\@from-gigantic{--gc-start: 11;--gc-end: 7}}@media(max-width: 1999px){.u-gc-11\\/7\\@to-gigantic{--gc-start: 11;--gc-end: 7}}@media(min-width: 2000px){.u-gc-11\\/8\\@from-gigantic{--gc-start: 11;--gc-end: 8}}@media(max-width: 1999px){.u-gc-11\\/8\\@to-gigantic{--gc-start: 11;--gc-end: 8}}@media(min-width: 2000px){.u-gc-11\\/9\\@from-gigantic{--gc-start: 11;--gc-end: 9}}@media(max-width: 1999px){.u-gc-11\\/9\\@to-gigantic{--gc-start: 11;--gc-end: 9}}@media(min-width: 2000px){.u-gc-11\\/10\\@from-gigantic{--gc-start: 11;--gc-end: 10}}@media(max-width: 1999px){.u-gc-11\\/10\\@to-gigantic{--gc-start: 11;--gc-end: 10}}@media(min-width: 2000px){.u-gc-11\\/11\\@from-gigantic{--gc-start: 11;--gc-end: 11}}@media(max-width: 1999px){.u-gc-11\\/11\\@to-gigantic{--gc-start: 11;--gc-end: 11}}@media(min-width: 2000px){.u-gc-11\\/12\\@from-gigantic{--gc-start: 11;--gc-end: 12}}@media(max-width: 1999px){.u-gc-11\\/12\\@to-gigantic{--gc-start: 11;--gc-end: 12}}@media(min-width: 2000px){.u-gc-11\\/13\\@from-gigantic{--gc-start: 11;--gc-end: 13}}@media(max-width: 1999px){.u-gc-11\\/13\\@to-gigantic{--gc-start: 11;--gc-end: 13}}@media(min-width: 2000px){.u-gc-12\\/1\\@from-gigantic{--gc-start: 12;--gc-end: 1}}@media(max-width: 1999px){.u-gc-12\\/1\\@to-gigantic{--gc-start: 12;--gc-end: 1}}@media(min-width: 2000px){.u-gc-12\\/2\\@from-gigantic{--gc-start: 12;--gc-end: 2}}@media(max-width: 1999px){.u-gc-12\\/2\\@to-gigantic{--gc-start: 12;--gc-end: 2}}@media(min-width: 2000px){.u-gc-12\\/3\\@from-gigantic{--gc-start: 12;--gc-end: 3}}@media(max-width: 1999px){.u-gc-12\\/3\\@to-gigantic{--gc-start: 12;--gc-end: 3}}@media(min-width: 2000px){.u-gc-12\\/4\\@from-gigantic{--gc-start: 12;--gc-end: 4}}@media(max-width: 1999px){.u-gc-12\\/4\\@to-gigantic{--gc-start: 12;--gc-end: 4}}@media(min-width: 2000px){.u-gc-12\\/5\\@from-gigantic{--gc-start: 12;--gc-end: 5}}@media(max-width: 1999px){.u-gc-12\\/5\\@to-gigantic{--gc-start: 12;--gc-end: 5}}@media(min-width: 2000px){.u-gc-12\\/6\\@from-gigantic{--gc-start: 12;--gc-end: 6}}@media(max-width: 1999px){.u-gc-12\\/6\\@to-gigantic{--gc-start: 12;--gc-end: 6}}@media(min-width: 2000px){.u-gc-12\\/7\\@from-gigantic{--gc-start: 12;--gc-end: 7}}@media(max-width: 1999px){.u-gc-12\\/7\\@to-gigantic{--gc-start: 12;--gc-end: 7}}@media(min-width: 2000px){.u-gc-12\\/8\\@from-gigantic{--gc-start: 12;--gc-end: 8}}@media(max-width: 1999px){.u-gc-12\\/8\\@to-gigantic{--gc-start: 12;--gc-end: 8}}@media(min-width: 2000px){.u-gc-12\\/9\\@from-gigantic{--gc-start: 12;--gc-end: 9}}@media(max-width: 1999px){.u-gc-12\\/9\\@to-gigantic{--gc-start: 12;--gc-end: 9}}@media(min-width: 2000px){.u-gc-12\\/10\\@from-gigantic{--gc-start: 12;--gc-end: 10}}@media(max-width: 1999px){.u-gc-12\\/10\\@to-gigantic{--gc-start: 12;--gc-end: 10}}@media(min-width: 2000px){.u-gc-12\\/11\\@from-gigantic{--gc-start: 12;--gc-end: 11}}@media(max-width: 1999px){.u-gc-12\\/11\\@to-gigantic{--gc-start: 12;--gc-end: 11}}@media(min-width: 2000px){.u-gc-12\\/12\\@from-gigantic{--gc-start: 12;--gc-end: 12}}@media(max-width: 1999px){.u-gc-12\\/12\\@to-gigantic{--gc-start: 12;--gc-end: 12}}@media(min-width: 2000px){.u-gc-12\\/13\\@from-gigantic{--gc-start: 12;--gc-end: 13}}@media(max-width: 1999px){.u-gc-12\\/13\\@to-gigantic{--gc-start: 12;--gc-end: 13}}@media(min-width: 2000px){.u-gc-13\\/1\\@from-gigantic{--gc-start: 13;--gc-end: 1}}@media(max-width: 1999px){.u-gc-13\\/1\\@to-gigantic{--gc-start: 13;--gc-end: 1}}@media(min-width: 2000px){.u-gc-13\\/2\\@from-gigantic{--gc-start: 13;--gc-end: 2}}@media(max-width: 1999px){.u-gc-13\\/2\\@to-gigantic{--gc-start: 13;--gc-end: 2}}@media(min-width: 2000px){.u-gc-13\\/3\\@from-gigantic{--gc-start: 13;--gc-end: 3}}@media(max-width: 1999px){.u-gc-13\\/3\\@to-gigantic{--gc-start: 13;--gc-end: 3}}@media(min-width: 2000px){.u-gc-13\\/4\\@from-gigantic{--gc-start: 13;--gc-end: 4}}@media(max-width: 1999px){.u-gc-13\\/4\\@to-gigantic{--gc-start: 13;--gc-end: 4}}@media(min-width: 2000px){.u-gc-13\\/5\\@from-gigantic{--gc-start: 13;--gc-end: 5}}@media(max-width: 1999px){.u-gc-13\\/5\\@to-gigantic{--gc-start: 13;--gc-end: 5}}@media(min-width: 2000px){.u-gc-13\\/6\\@from-gigantic{--gc-start: 13;--gc-end: 6}}@media(max-width: 1999px){.u-gc-13\\/6\\@to-gigantic{--gc-start: 13;--gc-end: 6}}@media(min-width: 2000px){.u-gc-13\\/7\\@from-gigantic{--gc-start: 13;--gc-end: 7}}@media(max-width: 1999px){.u-gc-13\\/7\\@to-gigantic{--gc-start: 13;--gc-end: 7}}@media(min-width: 2000px){.u-gc-13\\/8\\@from-gigantic{--gc-start: 13;--gc-end: 8}}@media(max-width: 1999px){.u-gc-13\\/8\\@to-gigantic{--gc-start: 13;--gc-end: 8}}@media(min-width: 2000px){.u-gc-13\\/9\\@from-gigantic{--gc-start: 13;--gc-end: 9}}@media(max-width: 1999px){.u-gc-13\\/9\\@to-gigantic{--gc-start: 13;--gc-end: 9}}@media(min-width: 2000px){.u-gc-13\\/10\\@from-gigantic{--gc-start: 13;--gc-end: 10}}@media(max-width: 1999px){.u-gc-13\\/10\\@to-gigantic{--gc-start: 13;--gc-end: 10}}@media(min-width: 2000px){.u-gc-13\\/11\\@from-gigantic{--gc-start: 13;--gc-end: 11}}@media(max-width: 1999px){.u-gc-13\\/11\\@to-gigantic{--gc-start: 13;--gc-end: 11}}@media(min-width: 2000px){.u-gc-13\\/12\\@from-gigantic{--gc-start: 13;--gc-end: 12}}@media(max-width: 1999px){.u-gc-13\\/12\\@to-gigantic{--gc-start: 13;--gc-end: 12}}@media(min-width: 2000px){.u-gc-13\\/13\\@from-gigantic{--gc-start: 13;--gc-end: 13}}@media(max-width: 1999px){.u-gc-13\\/13\\@to-gigantic{--gc-start: 13;--gc-end: 13}}@media(min-width: 2400px){.u-gc-1\\/1\\@from-colossal{--gc-start: 1;--gc-end: 1}}@media(max-width: 2399px){.u-gc-1\\/1\\@to-colossal{--gc-start: 1;--gc-end: 1}}@media(min-width: 2400px){.u-gc-1\\/2\\@from-colossal{--gc-start: 1;--gc-end: 2}}@media(max-width: 2399px){.u-gc-1\\/2\\@to-colossal{--gc-start: 1;--gc-end: 2}}@media(min-width: 2400px){.u-gc-1\\/3\\@from-colossal{--gc-start: 1;--gc-end: 3}}@media(max-width: 2399px){.u-gc-1\\/3\\@to-colossal{--gc-start: 1;--gc-end: 3}}@media(min-width: 2400px){.u-gc-1\\/4\\@from-colossal{--gc-start: 1;--gc-end: 4}}@media(max-width: 2399px){.u-gc-1\\/4\\@to-colossal{--gc-start: 1;--gc-end: 4}}@media(min-width: 2400px){.u-gc-1\\/5\\@from-colossal{--gc-start: 1;--gc-end: 5}}@media(max-width: 2399px){.u-gc-1\\/5\\@to-colossal{--gc-start: 1;--gc-end: 5}}@media(min-width: 2400px){.u-gc-1\\/6\\@from-colossal{--gc-start: 1;--gc-end: 6}}@media(max-width: 2399px){.u-gc-1\\/6\\@to-colossal{--gc-start: 1;--gc-end: 6}}@media(min-width: 2400px){.u-gc-1\\/7\\@from-colossal{--gc-start: 1;--gc-end: 7}}@media(max-width: 2399px){.u-gc-1\\/7\\@to-colossal{--gc-start: 1;--gc-end: 7}}@media(min-width: 2400px){.u-gc-1\\/8\\@from-colossal{--gc-start: 1;--gc-end: 8}}@media(max-width: 2399px){.u-gc-1\\/8\\@to-colossal{--gc-start: 1;--gc-end: 8}}@media(min-width: 2400px){.u-gc-1\\/9\\@from-colossal{--gc-start: 1;--gc-end: 9}}@media(max-width: 2399px){.u-gc-1\\/9\\@to-colossal{--gc-start: 1;--gc-end: 9}}@media(min-width: 2400px){.u-gc-1\\/10\\@from-colossal{--gc-start: 1;--gc-end: 10}}@media(max-width: 2399px){.u-gc-1\\/10\\@to-colossal{--gc-start: 1;--gc-end: 10}}@media(min-width: 2400px){.u-gc-1\\/11\\@from-colossal{--gc-start: 1;--gc-end: 11}}@media(max-width: 2399px){.u-gc-1\\/11\\@to-colossal{--gc-start: 1;--gc-end: 11}}@media(min-width: 2400px){.u-gc-1\\/12\\@from-colossal{--gc-start: 1;--gc-end: 12}}@media(max-width: 2399px){.u-gc-1\\/12\\@to-colossal{--gc-start: 1;--gc-end: 12}}@media(min-width: 2400px){.u-gc-1\\/13\\@from-colossal{--gc-start: 1;--gc-end: 13}}@media(max-width: 2399px){.u-gc-1\\/13\\@to-colossal{--gc-start: 1;--gc-end: 13}}@media(min-width: 2400px){.u-gc-2\\/1\\@from-colossal{--gc-start: 2;--gc-end: 1}}@media(max-width: 2399px){.u-gc-2\\/1\\@to-colossal{--gc-start: 2;--gc-end: 1}}@media(min-width: 2400px){.u-gc-2\\/2\\@from-colossal{--gc-start: 2;--gc-end: 2}}@media(max-width: 2399px){.u-gc-2\\/2\\@to-colossal{--gc-start: 2;--gc-end: 2}}@media(min-width: 2400px){.u-gc-2\\/3\\@from-colossal{--gc-start: 2;--gc-end: 3}}@media(max-width: 2399px){.u-gc-2\\/3\\@to-colossal{--gc-start: 2;--gc-end: 3}}@media(min-width: 2400px){.u-gc-2\\/4\\@from-colossal{--gc-start: 2;--gc-end: 4}}@media(max-width: 2399px){.u-gc-2\\/4\\@to-colossal{--gc-start: 2;--gc-end: 4}}@media(min-width: 2400px){.u-gc-2\\/5\\@from-colossal{--gc-start: 2;--gc-end: 5}}@media(max-width: 2399px){.u-gc-2\\/5\\@to-colossal{--gc-start: 2;--gc-end: 5}}@media(min-width: 2400px){.u-gc-2\\/6\\@from-colossal{--gc-start: 2;--gc-end: 6}}@media(max-width: 2399px){.u-gc-2\\/6\\@to-colossal{--gc-start: 2;--gc-end: 6}}@media(min-width: 2400px){.u-gc-2\\/7\\@from-colossal{--gc-start: 2;--gc-end: 7}}@media(max-width: 2399px){.u-gc-2\\/7\\@to-colossal{--gc-start: 2;--gc-end: 7}}@media(min-width: 2400px){.u-gc-2\\/8\\@from-colossal{--gc-start: 2;--gc-end: 8}}@media(max-width: 2399px){.u-gc-2\\/8\\@to-colossal{--gc-start: 2;--gc-end: 8}}@media(min-width: 2400px){.u-gc-2\\/9\\@from-colossal{--gc-start: 2;--gc-end: 9}}@media(max-width: 2399px){.u-gc-2\\/9\\@to-colossal{--gc-start: 2;--gc-end: 9}}@media(min-width: 2400px){.u-gc-2\\/10\\@from-colossal{--gc-start: 2;--gc-end: 10}}@media(max-width: 2399px){.u-gc-2\\/10\\@to-colossal{--gc-start: 2;--gc-end: 10}}@media(min-width: 2400px){.u-gc-2\\/11\\@from-colossal{--gc-start: 2;--gc-end: 11}}@media(max-width: 2399px){.u-gc-2\\/11\\@to-colossal{--gc-start: 2;--gc-end: 11}}@media(min-width: 2400px){.u-gc-2\\/12\\@from-colossal{--gc-start: 2;--gc-end: 12}}@media(max-width: 2399px){.u-gc-2\\/12\\@to-colossal{--gc-start: 2;--gc-end: 12}}@media(min-width: 2400px){.u-gc-2\\/13\\@from-colossal{--gc-start: 2;--gc-end: 13}}@media(max-width: 2399px){.u-gc-2\\/13\\@to-colossal{--gc-start: 2;--gc-end: 13}}@media(min-width: 2400px){.u-gc-3\\/1\\@from-colossal{--gc-start: 3;--gc-end: 1}}@media(max-width: 2399px){.u-gc-3\\/1\\@to-colossal{--gc-start: 3;--gc-end: 1}}@media(min-width: 2400px){.u-gc-3\\/2\\@from-colossal{--gc-start: 3;--gc-end: 2}}@media(max-width: 2399px){.u-gc-3\\/2\\@to-colossal{--gc-start: 3;--gc-end: 2}}@media(min-width: 2400px){.u-gc-3\\/3\\@from-colossal{--gc-start: 3;--gc-end: 3}}@media(max-width: 2399px){.u-gc-3\\/3\\@to-colossal{--gc-start: 3;--gc-end: 3}}@media(min-width: 2400px){.u-gc-3\\/4\\@from-colossal{--gc-start: 3;--gc-end: 4}}@media(max-width: 2399px){.u-gc-3\\/4\\@to-colossal{--gc-start: 3;--gc-end: 4}}@media(min-width: 2400px){.u-gc-3\\/5\\@from-colossal{--gc-start: 3;--gc-end: 5}}@media(max-width: 2399px){.u-gc-3\\/5\\@to-colossal{--gc-start: 3;--gc-end: 5}}@media(min-width: 2400px){.u-gc-3\\/6\\@from-colossal{--gc-start: 3;--gc-end: 6}}@media(max-width: 2399px){.u-gc-3\\/6\\@to-colossal{--gc-start: 3;--gc-end: 6}}@media(min-width: 2400px){.u-gc-3\\/7\\@from-colossal{--gc-start: 3;--gc-end: 7}}@media(max-width: 2399px){.u-gc-3\\/7\\@to-colossal{--gc-start: 3;--gc-end: 7}}@media(min-width: 2400px){.u-gc-3\\/8\\@from-colossal{--gc-start: 3;--gc-end: 8}}@media(max-width: 2399px){.u-gc-3\\/8\\@to-colossal{--gc-start: 3;--gc-end: 8}}@media(min-width: 2400px){.u-gc-3\\/9\\@from-colossal{--gc-start: 3;--gc-end: 9}}@media(max-width: 2399px){.u-gc-3\\/9\\@to-colossal{--gc-start: 3;--gc-end: 9}}@media(min-width: 2400px){.u-gc-3\\/10\\@from-colossal{--gc-start: 3;--gc-end: 10}}@media(max-width: 2399px){.u-gc-3\\/10\\@to-colossal{--gc-start: 3;--gc-end: 10}}@media(min-width: 2400px){.u-gc-3\\/11\\@from-colossal{--gc-start: 3;--gc-end: 11}}@media(max-width: 2399px){.u-gc-3\\/11\\@to-colossal{--gc-start: 3;--gc-end: 11}}@media(min-width: 2400px){.u-gc-3\\/12\\@from-colossal{--gc-start: 3;--gc-end: 12}}@media(max-width: 2399px){.u-gc-3\\/12\\@to-colossal{--gc-start: 3;--gc-end: 12}}@media(min-width: 2400px){.u-gc-3\\/13\\@from-colossal{--gc-start: 3;--gc-end: 13}}@media(max-width: 2399px){.u-gc-3\\/13\\@to-colossal{--gc-start: 3;--gc-end: 13}}@media(min-width: 2400px){.u-gc-4\\/1\\@from-colossal{--gc-start: 4;--gc-end: 1}}@media(max-width: 2399px){.u-gc-4\\/1\\@to-colossal{--gc-start: 4;--gc-end: 1}}@media(min-width: 2400px){.u-gc-4\\/2\\@from-colossal{--gc-start: 4;--gc-end: 2}}@media(max-width: 2399px){.u-gc-4\\/2\\@to-colossal{--gc-start: 4;--gc-end: 2}}@media(min-width: 2400px){.u-gc-4\\/3\\@from-colossal{--gc-start: 4;--gc-end: 3}}@media(max-width: 2399px){.u-gc-4\\/3\\@to-colossal{--gc-start: 4;--gc-end: 3}}@media(min-width: 2400px){.u-gc-4\\/4\\@from-colossal{--gc-start: 4;--gc-end: 4}}@media(max-width: 2399px){.u-gc-4\\/4\\@to-colossal{--gc-start: 4;--gc-end: 4}}@media(min-width: 2400px){.u-gc-4\\/5\\@from-colossal{--gc-start: 4;--gc-end: 5}}@media(max-width: 2399px){.u-gc-4\\/5\\@to-colossal{--gc-start: 4;--gc-end: 5}}@media(min-width: 2400px){.u-gc-4\\/6\\@from-colossal{--gc-start: 4;--gc-end: 6}}@media(max-width: 2399px){.u-gc-4\\/6\\@to-colossal{--gc-start: 4;--gc-end: 6}}@media(min-width: 2400px){.u-gc-4\\/7\\@from-colossal{--gc-start: 4;--gc-end: 7}}@media(max-width: 2399px){.u-gc-4\\/7\\@to-colossal{--gc-start: 4;--gc-end: 7}}@media(min-width: 2400px){.u-gc-4\\/8\\@from-colossal{--gc-start: 4;--gc-end: 8}}@media(max-width: 2399px){.u-gc-4\\/8\\@to-colossal{--gc-start: 4;--gc-end: 8}}@media(min-width: 2400px){.u-gc-4\\/9\\@from-colossal{--gc-start: 4;--gc-end: 9}}@media(max-width: 2399px){.u-gc-4\\/9\\@to-colossal{--gc-start: 4;--gc-end: 9}}@media(min-width: 2400px){.u-gc-4\\/10\\@from-colossal{--gc-start: 4;--gc-end: 10}}@media(max-width: 2399px){.u-gc-4\\/10\\@to-colossal{--gc-start: 4;--gc-end: 10}}@media(min-width: 2400px){.u-gc-4\\/11\\@from-colossal{--gc-start: 4;--gc-end: 11}}@media(max-width: 2399px){.u-gc-4\\/11\\@to-colossal{--gc-start: 4;--gc-end: 11}}@media(min-width: 2400px){.u-gc-4\\/12\\@from-colossal{--gc-start: 4;--gc-end: 12}}@media(max-width: 2399px){.u-gc-4\\/12\\@to-colossal{--gc-start: 4;--gc-end: 12}}@media(min-width: 2400px){.u-gc-4\\/13\\@from-colossal{--gc-start: 4;--gc-end: 13}}@media(max-width: 2399px){.u-gc-4\\/13\\@to-colossal{--gc-start: 4;--gc-end: 13}}@media(min-width: 2400px){.u-gc-5\\/1\\@from-colossal{--gc-start: 5;--gc-end: 1}}@media(max-width: 2399px){.u-gc-5\\/1\\@to-colossal{--gc-start: 5;--gc-end: 1}}@media(min-width: 2400px){.u-gc-5\\/2\\@from-colossal{--gc-start: 5;--gc-end: 2}}@media(max-width: 2399px){.u-gc-5\\/2\\@to-colossal{--gc-start: 5;--gc-end: 2}}@media(min-width: 2400px){.u-gc-5\\/3\\@from-colossal{--gc-start: 5;--gc-end: 3}}@media(max-width: 2399px){.u-gc-5\\/3\\@to-colossal{--gc-start: 5;--gc-end: 3}}@media(min-width: 2400px){.u-gc-5\\/4\\@from-colossal{--gc-start: 5;--gc-end: 4}}@media(max-width: 2399px){.u-gc-5\\/4\\@to-colossal{--gc-start: 5;--gc-end: 4}}@media(min-width: 2400px){.u-gc-5\\/5\\@from-colossal{--gc-start: 5;--gc-end: 5}}@media(max-width: 2399px){.u-gc-5\\/5\\@to-colossal{--gc-start: 5;--gc-end: 5}}@media(min-width: 2400px){.u-gc-5\\/6\\@from-colossal{--gc-start: 5;--gc-end: 6}}@media(max-width: 2399px){.u-gc-5\\/6\\@to-colossal{--gc-start: 5;--gc-end: 6}}@media(min-width: 2400px){.u-gc-5\\/7\\@from-colossal{--gc-start: 5;--gc-end: 7}}@media(max-width: 2399px){.u-gc-5\\/7\\@to-colossal{--gc-start: 5;--gc-end: 7}}@media(min-width: 2400px){.u-gc-5\\/8\\@from-colossal{--gc-start: 5;--gc-end: 8}}@media(max-width: 2399px){.u-gc-5\\/8\\@to-colossal{--gc-start: 5;--gc-end: 8}}@media(min-width: 2400px){.u-gc-5\\/9\\@from-colossal{--gc-start: 5;--gc-end: 9}}@media(max-width: 2399px){.u-gc-5\\/9\\@to-colossal{--gc-start: 5;--gc-end: 9}}@media(min-width: 2400px){.u-gc-5\\/10\\@from-colossal{--gc-start: 5;--gc-end: 10}}@media(max-width: 2399px){.u-gc-5\\/10\\@to-colossal{--gc-start: 5;--gc-end: 10}}@media(min-width: 2400px){.u-gc-5\\/11\\@from-colossal{--gc-start: 5;--gc-end: 11}}@media(max-width: 2399px){.u-gc-5\\/11\\@to-colossal{--gc-start: 5;--gc-end: 11}}@media(min-width: 2400px){.u-gc-5\\/12\\@from-colossal{--gc-start: 5;--gc-end: 12}}@media(max-width: 2399px){.u-gc-5\\/12\\@to-colossal{--gc-start: 5;--gc-end: 12}}@media(min-width: 2400px){.u-gc-5\\/13\\@from-colossal{--gc-start: 5;--gc-end: 13}}@media(max-width: 2399px){.u-gc-5\\/13\\@to-colossal{--gc-start: 5;--gc-end: 13}}@media(min-width: 2400px){.u-gc-6\\/1\\@from-colossal{--gc-start: 6;--gc-end: 1}}@media(max-width: 2399px){.u-gc-6\\/1\\@to-colossal{--gc-start: 6;--gc-end: 1}}@media(min-width: 2400px){.u-gc-6\\/2\\@from-colossal{--gc-start: 6;--gc-end: 2}}@media(max-width: 2399px){.u-gc-6\\/2\\@to-colossal{--gc-start: 6;--gc-end: 2}}@media(min-width: 2400px){.u-gc-6\\/3\\@from-colossal{--gc-start: 6;--gc-end: 3}}@media(max-width: 2399px){.u-gc-6\\/3\\@to-colossal{--gc-start: 6;--gc-end: 3}}@media(min-width: 2400px){.u-gc-6\\/4\\@from-colossal{--gc-start: 6;--gc-end: 4}}@media(max-width: 2399px){.u-gc-6\\/4\\@to-colossal{--gc-start: 6;--gc-end: 4}}@media(min-width: 2400px){.u-gc-6\\/5\\@from-colossal{--gc-start: 6;--gc-end: 5}}@media(max-width: 2399px){.u-gc-6\\/5\\@to-colossal{--gc-start: 6;--gc-end: 5}}@media(min-width: 2400px){.u-gc-6\\/6\\@from-colossal{--gc-start: 6;--gc-end: 6}}@media(max-width: 2399px){.u-gc-6\\/6\\@to-colossal{--gc-start: 6;--gc-end: 6}}@media(min-width: 2400px){.u-gc-6\\/7\\@from-colossal{--gc-start: 6;--gc-end: 7}}@media(max-width: 2399px){.u-gc-6\\/7\\@to-colossal{--gc-start: 6;--gc-end: 7}}@media(min-width: 2400px){.u-gc-6\\/8\\@from-colossal{--gc-start: 6;--gc-end: 8}}@media(max-width: 2399px){.u-gc-6\\/8\\@to-colossal{--gc-start: 6;--gc-end: 8}}@media(min-width: 2400px){.u-gc-6\\/9\\@from-colossal{--gc-start: 6;--gc-end: 9}}@media(max-width: 2399px){.u-gc-6\\/9\\@to-colossal{--gc-start: 6;--gc-end: 9}}@media(min-width: 2400px){.u-gc-6\\/10\\@from-colossal{--gc-start: 6;--gc-end: 10}}@media(max-width: 2399px){.u-gc-6\\/10\\@to-colossal{--gc-start: 6;--gc-end: 10}}@media(min-width: 2400px){.u-gc-6\\/11\\@from-colossal{--gc-start: 6;--gc-end: 11}}@media(max-width: 2399px){.u-gc-6\\/11\\@to-colossal{--gc-start: 6;--gc-end: 11}}@media(min-width: 2400px){.u-gc-6\\/12\\@from-colossal{--gc-start: 6;--gc-end: 12}}@media(max-width: 2399px){.u-gc-6\\/12\\@to-colossal{--gc-start: 6;--gc-end: 12}}@media(min-width: 2400px){.u-gc-6\\/13\\@from-colossal{--gc-start: 6;--gc-end: 13}}@media(max-width: 2399px){.u-gc-6\\/13\\@to-colossal{--gc-start: 6;--gc-end: 13}}@media(min-width: 2400px){.u-gc-7\\/1\\@from-colossal{--gc-start: 7;--gc-end: 1}}@media(max-width: 2399px){.u-gc-7\\/1\\@to-colossal{--gc-start: 7;--gc-end: 1}}@media(min-width: 2400px){.u-gc-7\\/2\\@from-colossal{--gc-start: 7;--gc-end: 2}}@media(max-width: 2399px){.u-gc-7\\/2\\@to-colossal{--gc-start: 7;--gc-end: 2}}@media(min-width: 2400px){.u-gc-7\\/3\\@from-colossal{--gc-start: 7;--gc-end: 3}}@media(max-width: 2399px){.u-gc-7\\/3\\@to-colossal{--gc-start: 7;--gc-end: 3}}@media(min-width: 2400px){.u-gc-7\\/4\\@from-colossal{--gc-start: 7;--gc-end: 4}}@media(max-width: 2399px){.u-gc-7\\/4\\@to-colossal{--gc-start: 7;--gc-end: 4}}@media(min-width: 2400px){.u-gc-7\\/5\\@from-colossal{--gc-start: 7;--gc-end: 5}}@media(max-width: 2399px){.u-gc-7\\/5\\@to-colossal{--gc-start: 7;--gc-end: 5}}@media(min-width: 2400px){.u-gc-7\\/6\\@from-colossal{--gc-start: 7;--gc-end: 6}}@media(max-width: 2399px){.u-gc-7\\/6\\@to-colossal{--gc-start: 7;--gc-end: 6}}@media(min-width: 2400px){.u-gc-7\\/7\\@from-colossal{--gc-start: 7;--gc-end: 7}}@media(max-width: 2399px){.u-gc-7\\/7\\@to-colossal{--gc-start: 7;--gc-end: 7}}@media(min-width: 2400px){.u-gc-7\\/8\\@from-colossal{--gc-start: 7;--gc-end: 8}}@media(max-width: 2399px){.u-gc-7\\/8\\@to-colossal{--gc-start: 7;--gc-end: 8}}@media(min-width: 2400px){.u-gc-7\\/9\\@from-colossal{--gc-start: 7;--gc-end: 9}}@media(max-width: 2399px){.u-gc-7\\/9\\@to-colossal{--gc-start: 7;--gc-end: 9}}@media(min-width: 2400px){.u-gc-7\\/10\\@from-colossal{--gc-start: 7;--gc-end: 10}}@media(max-width: 2399px){.u-gc-7\\/10\\@to-colossal{--gc-start: 7;--gc-end: 10}}@media(min-width: 2400px){.u-gc-7\\/11\\@from-colossal{--gc-start: 7;--gc-end: 11}}@media(max-width: 2399px){.u-gc-7\\/11\\@to-colossal{--gc-start: 7;--gc-end: 11}}@media(min-width: 2400px){.u-gc-7\\/12\\@from-colossal{--gc-start: 7;--gc-end: 12}}@media(max-width: 2399px){.u-gc-7\\/12\\@to-colossal{--gc-start: 7;--gc-end: 12}}@media(min-width: 2400px){.u-gc-7\\/13\\@from-colossal{--gc-start: 7;--gc-end: 13}}@media(max-width: 2399px){.u-gc-7\\/13\\@to-colossal{--gc-start: 7;--gc-end: 13}}@media(min-width: 2400px){.u-gc-8\\/1\\@from-colossal{--gc-start: 8;--gc-end: 1}}@media(max-width: 2399px){.u-gc-8\\/1\\@to-colossal{--gc-start: 8;--gc-end: 1}}@media(min-width: 2400px){.u-gc-8\\/2\\@from-colossal{--gc-start: 8;--gc-end: 2}}@media(max-width: 2399px){.u-gc-8\\/2\\@to-colossal{--gc-start: 8;--gc-end: 2}}@media(min-width: 2400px){.u-gc-8\\/3\\@from-colossal{--gc-start: 8;--gc-end: 3}}@media(max-width: 2399px){.u-gc-8\\/3\\@to-colossal{--gc-start: 8;--gc-end: 3}}@media(min-width: 2400px){.u-gc-8\\/4\\@from-colossal{--gc-start: 8;--gc-end: 4}}@media(max-width: 2399px){.u-gc-8\\/4\\@to-colossal{--gc-start: 8;--gc-end: 4}}@media(min-width: 2400px){.u-gc-8\\/5\\@from-colossal{--gc-start: 8;--gc-end: 5}}@media(max-width: 2399px){.u-gc-8\\/5\\@to-colossal{--gc-start: 8;--gc-end: 5}}@media(min-width: 2400px){.u-gc-8\\/6\\@from-colossal{--gc-start: 8;--gc-end: 6}}@media(max-width: 2399px){.u-gc-8\\/6\\@to-colossal{--gc-start: 8;--gc-end: 6}}@media(min-width: 2400px){.u-gc-8\\/7\\@from-colossal{--gc-start: 8;--gc-end: 7}}@media(max-width: 2399px){.u-gc-8\\/7\\@to-colossal{--gc-start: 8;--gc-end: 7}}@media(min-width: 2400px){.u-gc-8\\/8\\@from-colossal{--gc-start: 8;--gc-end: 8}}@media(max-width: 2399px){.u-gc-8\\/8\\@to-colossal{--gc-start: 8;--gc-end: 8}}@media(min-width: 2400px){.u-gc-8\\/9\\@from-colossal{--gc-start: 8;--gc-end: 9}}@media(max-width: 2399px){.u-gc-8\\/9\\@to-colossal{--gc-start: 8;--gc-end: 9}}@media(min-width: 2400px){.u-gc-8\\/10\\@from-colossal{--gc-start: 8;--gc-end: 10}}@media(max-width: 2399px){.u-gc-8\\/10\\@to-colossal{--gc-start: 8;--gc-end: 10}}@media(min-width: 2400px){.u-gc-8\\/11\\@from-colossal{--gc-start: 8;--gc-end: 11}}@media(max-width: 2399px){.u-gc-8\\/11\\@to-colossal{--gc-start: 8;--gc-end: 11}}@media(min-width: 2400px){.u-gc-8\\/12\\@from-colossal{--gc-start: 8;--gc-end: 12}}@media(max-width: 2399px){.u-gc-8\\/12\\@to-colossal{--gc-start: 8;--gc-end: 12}}@media(min-width: 2400px){.u-gc-8\\/13\\@from-colossal{--gc-start: 8;--gc-end: 13}}@media(max-width: 2399px){.u-gc-8\\/13\\@to-colossal{--gc-start: 8;--gc-end: 13}}@media(min-width: 2400px){.u-gc-9\\/1\\@from-colossal{--gc-start: 9;--gc-end: 1}}@media(max-width: 2399px){.u-gc-9\\/1\\@to-colossal{--gc-start: 9;--gc-end: 1}}@media(min-width: 2400px){.u-gc-9\\/2\\@from-colossal{--gc-start: 9;--gc-end: 2}}@media(max-width: 2399px){.u-gc-9\\/2\\@to-colossal{--gc-start: 9;--gc-end: 2}}@media(min-width: 2400px){.u-gc-9\\/3\\@from-colossal{--gc-start: 9;--gc-end: 3}}@media(max-width: 2399px){.u-gc-9\\/3\\@to-colossal{--gc-start: 9;--gc-end: 3}}@media(min-width: 2400px){.u-gc-9\\/4\\@from-colossal{--gc-start: 9;--gc-end: 4}}@media(max-width: 2399px){.u-gc-9\\/4\\@to-colossal{--gc-start: 9;--gc-end: 4}}@media(min-width: 2400px){.u-gc-9\\/5\\@from-colossal{--gc-start: 9;--gc-end: 5}}@media(max-width: 2399px){.u-gc-9\\/5\\@to-colossal{--gc-start: 9;--gc-end: 5}}@media(min-width: 2400px){.u-gc-9\\/6\\@from-colossal{--gc-start: 9;--gc-end: 6}}@media(max-width: 2399px){.u-gc-9\\/6\\@to-colossal{--gc-start: 9;--gc-end: 6}}@media(min-width: 2400px){.u-gc-9\\/7\\@from-colossal{--gc-start: 9;--gc-end: 7}}@media(max-width: 2399px){.u-gc-9\\/7\\@to-colossal{--gc-start: 9;--gc-end: 7}}@media(min-width: 2400px){.u-gc-9\\/8\\@from-colossal{--gc-start: 9;--gc-end: 8}}@media(max-width: 2399px){.u-gc-9\\/8\\@to-colossal{--gc-start: 9;--gc-end: 8}}@media(min-width: 2400px){.u-gc-9\\/9\\@from-colossal{--gc-start: 9;--gc-end: 9}}@media(max-width: 2399px){.u-gc-9\\/9\\@to-colossal{--gc-start: 9;--gc-end: 9}}@media(min-width: 2400px){.u-gc-9\\/10\\@from-colossal{--gc-start: 9;--gc-end: 10}}@media(max-width: 2399px){.u-gc-9\\/10\\@to-colossal{--gc-start: 9;--gc-end: 10}}@media(min-width: 2400px){.u-gc-9\\/11\\@from-colossal{--gc-start: 9;--gc-end: 11}}@media(max-width: 2399px){.u-gc-9\\/11\\@to-colossal{--gc-start: 9;--gc-end: 11}}@media(min-width: 2400px){.u-gc-9\\/12\\@from-colossal{--gc-start: 9;--gc-end: 12}}@media(max-width: 2399px){.u-gc-9\\/12\\@to-colossal{--gc-start: 9;--gc-end: 12}}@media(min-width: 2400px){.u-gc-9\\/13\\@from-colossal{--gc-start: 9;--gc-end: 13}}@media(max-width: 2399px){.u-gc-9\\/13\\@to-colossal{--gc-start: 9;--gc-end: 13}}@media(min-width: 2400px){.u-gc-10\\/1\\@from-colossal{--gc-start: 10;--gc-end: 1}}@media(max-width: 2399px){.u-gc-10\\/1\\@to-colossal{--gc-start: 10;--gc-end: 1}}@media(min-width: 2400px){.u-gc-10\\/2\\@from-colossal{--gc-start: 10;--gc-end: 2}}@media(max-width: 2399px){.u-gc-10\\/2\\@to-colossal{--gc-start: 10;--gc-end: 2}}@media(min-width: 2400px){.u-gc-10\\/3\\@from-colossal{--gc-start: 10;--gc-end: 3}}@media(max-width: 2399px){.u-gc-10\\/3\\@to-colossal{--gc-start: 10;--gc-end: 3}}@media(min-width: 2400px){.u-gc-10\\/4\\@from-colossal{--gc-start: 10;--gc-end: 4}}@media(max-width: 2399px){.u-gc-10\\/4\\@to-colossal{--gc-start: 10;--gc-end: 4}}@media(min-width: 2400px){.u-gc-10\\/5\\@from-colossal{--gc-start: 10;--gc-end: 5}}@media(max-width: 2399px){.u-gc-10\\/5\\@to-colossal{--gc-start: 10;--gc-end: 5}}@media(min-width: 2400px){.u-gc-10\\/6\\@from-colossal{--gc-start: 10;--gc-end: 6}}@media(max-width: 2399px){.u-gc-10\\/6\\@to-colossal{--gc-start: 10;--gc-end: 6}}@media(min-width: 2400px){.u-gc-10\\/7\\@from-colossal{--gc-start: 10;--gc-end: 7}}@media(max-width: 2399px){.u-gc-10\\/7\\@to-colossal{--gc-start: 10;--gc-end: 7}}@media(min-width: 2400px){.u-gc-10\\/8\\@from-colossal{--gc-start: 10;--gc-end: 8}}@media(max-width: 2399px){.u-gc-10\\/8\\@to-colossal{--gc-start: 10;--gc-end: 8}}@media(min-width: 2400px){.u-gc-10\\/9\\@from-colossal{--gc-start: 10;--gc-end: 9}}@media(max-width: 2399px){.u-gc-10\\/9\\@to-colossal{--gc-start: 10;--gc-end: 9}}@media(min-width: 2400px){.u-gc-10\\/10\\@from-colossal{--gc-start: 10;--gc-end: 10}}@media(max-width: 2399px){.u-gc-10\\/10\\@to-colossal{--gc-start: 10;--gc-end: 10}}@media(min-width: 2400px){.u-gc-10\\/11\\@from-colossal{--gc-start: 10;--gc-end: 11}}@media(max-width: 2399px){.u-gc-10\\/11\\@to-colossal{--gc-start: 10;--gc-end: 11}}@media(min-width: 2400px){.u-gc-10\\/12\\@from-colossal{--gc-start: 10;--gc-end: 12}}@media(max-width: 2399px){.u-gc-10\\/12\\@to-colossal{--gc-start: 10;--gc-end: 12}}@media(min-width: 2400px){.u-gc-10\\/13\\@from-colossal{--gc-start: 10;--gc-end: 13}}@media(max-width: 2399px){.u-gc-10\\/13\\@to-colossal{--gc-start: 10;--gc-end: 13}}@media(min-width: 2400px){.u-gc-11\\/1\\@from-colossal{--gc-start: 11;--gc-end: 1}}@media(max-width: 2399px){.u-gc-11\\/1\\@to-colossal{--gc-start: 11;--gc-end: 1}}@media(min-width: 2400px){.u-gc-11\\/2\\@from-colossal{--gc-start: 11;--gc-end: 2}}@media(max-width: 2399px){.u-gc-11\\/2\\@to-colossal{--gc-start: 11;--gc-end: 2}}@media(min-width: 2400px){.u-gc-11\\/3\\@from-colossal{--gc-start: 11;--gc-end: 3}}@media(max-width: 2399px){.u-gc-11\\/3\\@to-colossal{--gc-start: 11;--gc-end: 3}}@media(min-width: 2400px){.u-gc-11\\/4\\@from-colossal{--gc-start: 11;--gc-end: 4}}@media(max-width: 2399px){.u-gc-11\\/4\\@to-colossal{--gc-start: 11;--gc-end: 4}}@media(min-width: 2400px){.u-gc-11\\/5\\@from-colossal{--gc-start: 11;--gc-end: 5}}@media(max-width: 2399px){.u-gc-11\\/5\\@to-colossal{--gc-start: 11;--gc-end: 5}}@media(min-width: 2400px){.u-gc-11\\/6\\@from-colossal{--gc-start: 11;--gc-end: 6}}@media(max-width: 2399px){.u-gc-11\\/6\\@to-colossal{--gc-start: 11;--gc-end: 6}}@media(min-width: 2400px){.u-gc-11\\/7\\@from-colossal{--gc-start: 11;--gc-end: 7}}@media(max-width: 2399px){.u-gc-11\\/7\\@to-colossal{--gc-start: 11;--gc-end: 7}}@media(min-width: 2400px){.u-gc-11\\/8\\@from-colossal{--gc-start: 11;--gc-end: 8}}@media(max-width: 2399px){.u-gc-11\\/8\\@to-colossal{--gc-start: 11;--gc-end: 8}}@media(min-width: 2400px){.u-gc-11\\/9\\@from-colossal{--gc-start: 11;--gc-end: 9}}@media(max-width: 2399px){.u-gc-11\\/9\\@to-colossal{--gc-start: 11;--gc-end: 9}}@media(min-width: 2400px){.u-gc-11\\/10\\@from-colossal{--gc-start: 11;--gc-end: 10}}@media(max-width: 2399px){.u-gc-11\\/10\\@to-colossal{--gc-start: 11;--gc-end: 10}}@media(min-width: 2400px){.u-gc-11\\/11\\@from-colossal{--gc-start: 11;--gc-end: 11}}@media(max-width: 2399px){.u-gc-11\\/11\\@to-colossal{--gc-start: 11;--gc-end: 11}}@media(min-width: 2400px){.u-gc-11\\/12\\@from-colossal{--gc-start: 11;--gc-end: 12}}@media(max-width: 2399px){.u-gc-11\\/12\\@to-colossal{--gc-start: 11;--gc-end: 12}}@media(min-width: 2400px){.u-gc-11\\/13\\@from-colossal{--gc-start: 11;--gc-end: 13}}@media(max-width: 2399px){.u-gc-11\\/13\\@to-colossal{--gc-start: 11;--gc-end: 13}}@media(min-width: 2400px){.u-gc-12\\/1\\@from-colossal{--gc-start: 12;--gc-end: 1}}@media(max-width: 2399px){.u-gc-12\\/1\\@to-colossal{--gc-start: 12;--gc-end: 1}}@media(min-width: 2400px){.u-gc-12\\/2\\@from-colossal{--gc-start: 12;--gc-end: 2}}@media(max-width: 2399px){.u-gc-12\\/2\\@to-colossal{--gc-start: 12;--gc-end: 2}}@media(min-width: 2400px){.u-gc-12\\/3\\@from-colossal{--gc-start: 12;--gc-end: 3}}@media(max-width: 2399px){.u-gc-12\\/3\\@to-colossal{--gc-start: 12;--gc-end: 3}}@media(min-width: 2400px){.u-gc-12\\/4\\@from-colossal{--gc-start: 12;--gc-end: 4}}@media(max-width: 2399px){.u-gc-12\\/4\\@to-colossal{--gc-start: 12;--gc-end: 4}}@media(min-width: 2400px){.u-gc-12\\/5\\@from-colossal{--gc-start: 12;--gc-end: 5}}@media(max-width: 2399px){.u-gc-12\\/5\\@to-colossal{--gc-start: 12;--gc-end: 5}}@media(min-width: 2400px){.u-gc-12\\/6\\@from-colossal{--gc-start: 12;--gc-end: 6}}@media(max-width: 2399px){.u-gc-12\\/6\\@to-colossal{--gc-start: 12;--gc-end: 6}}@media(min-width: 2400px){.u-gc-12\\/7\\@from-colossal{--gc-start: 12;--gc-end: 7}}@media(max-width: 2399px){.u-gc-12\\/7\\@to-colossal{--gc-start: 12;--gc-end: 7}}@media(min-width: 2400px){.u-gc-12\\/8\\@from-colossal{--gc-start: 12;--gc-end: 8}}@media(max-width: 2399px){.u-gc-12\\/8\\@to-colossal{--gc-start: 12;--gc-end: 8}}@media(min-width: 2400px){.u-gc-12\\/9\\@from-colossal{--gc-start: 12;--gc-end: 9}}@media(max-width: 2399px){.u-gc-12\\/9\\@to-colossal{--gc-start: 12;--gc-end: 9}}@media(min-width: 2400px){.u-gc-12\\/10\\@from-colossal{--gc-start: 12;--gc-end: 10}}@media(max-width: 2399px){.u-gc-12\\/10\\@to-colossal{--gc-start: 12;--gc-end: 10}}@media(min-width: 2400px){.u-gc-12\\/11\\@from-colossal{--gc-start: 12;--gc-end: 11}}@media(max-width: 2399px){.u-gc-12\\/11\\@to-colossal{--gc-start: 12;--gc-end: 11}}@media(min-width: 2400px){.u-gc-12\\/12\\@from-colossal{--gc-start: 12;--gc-end: 12}}@media(max-width: 2399px){.u-gc-12\\/12\\@to-colossal{--gc-start: 12;--gc-end: 12}}@media(min-width: 2400px){.u-gc-12\\/13\\@from-colossal{--gc-start: 12;--gc-end: 13}}@media(max-width: 2399px){.u-gc-12\\/13\\@to-colossal{--gc-start: 12;--gc-end: 13}}@media(min-width: 2400px){.u-gc-13\\/1\\@from-colossal{--gc-start: 13;--gc-end: 1}}@media(max-width: 2399px){.u-gc-13\\/1\\@to-colossal{--gc-start: 13;--gc-end: 1}}@media(min-width: 2400px){.u-gc-13\\/2\\@from-colossal{--gc-start: 13;--gc-end: 2}}@media(max-width: 2399px){.u-gc-13\\/2\\@to-colossal{--gc-start: 13;--gc-end: 2}}@media(min-width: 2400px){.u-gc-13\\/3\\@from-colossal{--gc-start: 13;--gc-end: 3}}@media(max-width: 2399px){.u-gc-13\\/3\\@to-colossal{--gc-start: 13;--gc-end: 3}}@media(min-width: 2400px){.u-gc-13\\/4\\@from-colossal{--gc-start: 13;--gc-end: 4}}@media(max-width: 2399px){.u-gc-13\\/4\\@to-colossal{--gc-start: 13;--gc-end: 4}}@media(min-width: 2400px){.u-gc-13\\/5\\@from-colossal{--gc-start: 13;--gc-end: 5}}@media(max-width: 2399px){.u-gc-13\\/5\\@to-colossal{--gc-start: 13;--gc-end: 5}}@media(min-width: 2400px){.u-gc-13\\/6\\@from-colossal{--gc-start: 13;--gc-end: 6}}@media(max-width: 2399px){.u-gc-13\\/6\\@to-colossal{--gc-start: 13;--gc-end: 6}}@media(min-width: 2400px){.u-gc-13\\/7\\@from-colossal{--gc-start: 13;--gc-end: 7}}@media(max-width: 2399px){.u-gc-13\\/7\\@to-colossal{--gc-start: 13;--gc-end: 7}}@media(min-width: 2400px){.u-gc-13\\/8\\@from-colossal{--gc-start: 13;--gc-end: 8}}@media(max-width: 2399px){.u-gc-13\\/8\\@to-colossal{--gc-start: 13;--gc-end: 8}}@media(min-width: 2400px){.u-gc-13\\/9\\@from-colossal{--gc-start: 13;--gc-end: 9}}@media(max-width: 2399px){.u-gc-13\\/9\\@to-colossal{--gc-start: 13;--gc-end: 9}}@media(min-width: 2400px){.u-gc-13\\/10\\@from-colossal{--gc-start: 13;--gc-end: 10}}@media(max-width: 2399px){.u-gc-13\\/10\\@to-colossal{--gc-start: 13;--gc-end: 10}}@media(min-width: 2400px){.u-gc-13\\/11\\@from-colossal{--gc-start: 13;--gc-end: 11}}@media(max-width: 2399px){.u-gc-13\\/11\\@to-colossal{--gc-start: 13;--gc-end: 11}}@media(min-width: 2400px){.u-gc-13\\/12\\@from-colossal{--gc-start: 13;--gc-end: 12}}@media(max-width: 2399px){.u-gc-13\\/12\\@to-colossal{--gc-start: 13;--gc-end: 12}}@media(min-width: 2400px){.u-gc-13\\/13\\@from-colossal{--gc-start: 13;--gc-end: 13}}@media(max-width: 2399px){.u-gc-13\\/13\\@to-colossal{--gc-start: 13;--gc-end: 13}}.u-padding-gutter{padding:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-gutter\\@from-tiny{padding:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-gutter\\@to-tiny{padding:var(--grid-gutter) !important}}.u-padding-xs{padding:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-xs\\@from-tiny{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-xs\\@to-tiny{padding:calc(5 * var(--vh, 1vh)) !important}}.u-padding-sm{padding:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-sm\\@from-tiny{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-sm\\@to-tiny{padding:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-md{padding:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-md\\@from-tiny{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-md\\@to-tiny{padding:calc(10 * var(--vh, 1vh)) !important}}.u-padding-lg{padding:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-lg\\@from-tiny{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-lg\\@to-tiny{padding:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-xl{padding:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-xl\\@from-tiny{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-xl\\@to-tiny{padding:calc(15 * var(--vh, 1vh)) !important}}.u-padding{padding:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding\\@from-tiny{padding:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding\\@to-tiny{padding:var(--grid-gutter) !important}}.u-padding-none{padding:0 !important}@media(min-width: 500px){.u-padding-none\\@from-tiny{padding:0 !important}}@media(max-width: 499px){.u-padding-none\\@to-tiny{padding:0 !important}}.u-padding-top-gutter{padding-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-top-gutter\\@from-tiny{padding-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-top-gutter\\@to-tiny{padding-top:var(--grid-gutter) !important}}.u-padding-top-xs{padding-top:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-xs\\@from-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-xs\\@to-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important}}.u-padding-top-sm{padding-top:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-sm\\@from-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-sm\\@to-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-top-md{padding-top:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-md\\@from-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-md\\@to-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important}}.u-padding-top-lg{padding-top:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-lg\\@from-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-lg\\@to-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-top-xl{padding-top:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-xl\\@from-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-xl\\@to-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important}}.u-padding-top{padding-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-top\\@from-tiny{padding-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-top\\@to-tiny{padding-top:var(--grid-gutter) !important}}.u-padding-top-none{padding-top:0 !important}@media(min-width: 500px){.u-padding-top-none\\@from-tiny{padding-top:0 !important}}@media(max-width: 499px){.u-padding-top-none\\@to-tiny{padding-top:0 !important}}.u-padding-right-gutter{padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-right-gutter\\@from-tiny{padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-right-gutter\\@to-tiny{padding-right:var(--grid-gutter) !important}}.u-padding-right-xs{padding-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-xs\\@from-tiny{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-xs\\@to-tiny{padding-right:calc(5 * var(--vh, 1vh)) !important}}.u-padding-right-sm{padding-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-sm\\@from-tiny{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-sm\\@to-tiny{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-right-md{padding-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-md\\@from-tiny{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-md\\@to-tiny{padding-right:calc(10 * var(--vh, 1vh)) !important}}.u-padding-right-lg{padding-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-lg\\@from-tiny{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-lg\\@to-tiny{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-right-xl{padding-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-xl\\@from-tiny{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-xl\\@to-tiny{padding-right:calc(15 * var(--vh, 1vh)) !important}}.u-padding-right{padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-right\\@from-tiny{padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-right\\@to-tiny{padding-right:var(--grid-gutter) !important}}.u-padding-right-none{padding-right:0 !important}@media(min-width: 500px){.u-padding-right-none\\@from-tiny{padding-right:0 !important}}@media(max-width: 499px){.u-padding-right-none\\@to-tiny{padding-right:0 !important}}.u-padding-bottom-gutter{padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-bottom-gutter\\@from-tiny{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-bottom-gutter\\@to-tiny{padding-bottom:var(--grid-gutter) !important}}.u-padding-bottom-xs{padding-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-xs\\@from-tiny{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-xs\\@to-tiny{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-padding-bottom-sm{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-sm\\@from-tiny{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-sm\\@to-tiny{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-bottom-md{padding-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-md\\@from-tiny{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-md\\@to-tiny{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-padding-bottom-lg{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-lg\\@from-tiny{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-lg\\@to-tiny{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-bottom-xl{padding-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-xl\\@from-tiny{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-xl\\@to-tiny{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-padding-bottom{padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-bottom\\@from-tiny{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-bottom\\@to-tiny{padding-bottom:var(--grid-gutter) !important}}.u-padding-bottom-none{padding-bottom:0 !important}@media(min-width: 500px){.u-padding-bottom-none\\@from-tiny{padding-bottom:0 !important}}@media(max-width: 499px){.u-padding-bottom-none\\@to-tiny{padding-bottom:0 !important}}.u-padding-left-gutter{padding-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-left-gutter\\@from-tiny{padding-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-left-gutter\\@to-tiny{padding-left:var(--grid-gutter) !important}}.u-padding-left-xs{padding-left:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-xs\\@from-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-xs\\@to-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important}}.u-padding-left-sm{padding-left:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-sm\\@from-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-sm\\@to-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-left-md{padding-left:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-md\\@from-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-md\\@to-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important}}.u-padding-left-lg{padding-left:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-lg\\@from-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-lg\\@to-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-left-xl{padding-left:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-xl\\@from-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-xl\\@to-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important}}.u-padding-left{padding-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-left\\@from-tiny{padding-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-left\\@to-tiny{padding-left:var(--grid-gutter) !important}}.u-padding-left-none{padding-left:0 !important}@media(min-width: 500px){.u-padding-left-none\\@from-tiny{padding-left:0 !important}}@media(max-width: 499px){.u-padding-left-none\\@to-tiny{padding-left:0 !important}}.u-padding-x-gutter{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-x-gutter\\@from-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-x-gutter\\@to-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}.u-padding-x-xs{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-xs\\@from-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-xs\\@to-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}.u-padding-x-sm{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-sm\\@from-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-sm\\@to-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-x-md{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-md\\@from-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-md\\@to-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}.u-padding-x-lg{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-lg\\@from-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-lg\\@to-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-x-xl{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-xl\\@from-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-xl\\@to-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}.u-padding-x{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-x\\@from-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-x\\@to-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}.u-padding-x-none{padding-left:0 !important;padding-right:0 !important}@media(min-width: 500px){.u-padding-x-none\\@from-tiny{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 499px){.u-padding-x-none\\@to-tiny{padding-left:0 !important;padding-right:0 !important}}.u-padding-y-gutter{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-y-gutter\\@from-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-y-gutter\\@to-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}.u-padding-y-xs{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-xs\\@from-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-xs\\@to-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-padding-y-sm{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-sm\\@from-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-sm\\@to-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-y-md{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-md\\@from-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-md\\@to-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-padding-y-lg{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-lg\\@from-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-lg\\@to-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-y-xl{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-xl\\@from-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-xl\\@to-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-padding-y{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-y\\@from-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-y\\@to-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}.u-padding-y-none{padding-top:0 !important;padding-bottom:0 !important}@media(min-width: 500px){.u-padding-y-none\\@from-tiny{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 499px){.u-padding-y-none\\@to-tiny{padding-top:0 !important;padding-bottom:0 !important}}.u-margin-gutter{margin:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-gutter\\@from-tiny{margin:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-gutter\\@to-tiny{margin:var(--grid-gutter) !important}}.u-margin-xs{margin:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-xs\\@from-tiny{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-xs\\@to-tiny{margin:calc(5 * var(--vh, 1vh)) !important}}.u-margin-sm{margin:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-sm\\@from-tiny{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-sm\\@to-tiny{margin:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-md{margin:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-md\\@from-tiny{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-md\\@to-tiny{margin:calc(10 * var(--vh, 1vh)) !important}}.u-margin-lg{margin:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-lg\\@from-tiny{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-lg\\@to-tiny{margin:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-xl{margin:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-xl\\@from-tiny{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-xl\\@to-tiny{margin:calc(15 * var(--vh, 1vh)) !important}}.u-margin{margin:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin\\@from-tiny{margin:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin\\@to-tiny{margin:var(--grid-gutter) !important}}.u-margin-none{margin:0 !important}@media(min-width: 500px){.u-margin-none\\@from-tiny{margin:0 !important}}@media(max-width: 499px){.u-margin-none\\@to-tiny{margin:0 !important}}.u-margin-top-gutter{margin-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-top-gutter\\@from-tiny{margin-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-top-gutter\\@to-tiny{margin-top:var(--grid-gutter) !important}}.u-margin-top-xs{margin-top:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-xs\\@from-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-xs\\@to-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important}}.u-margin-top-sm{margin-top:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-sm\\@from-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-sm\\@to-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-top-md{margin-top:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-md\\@from-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-md\\@to-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important}}.u-margin-top-lg{margin-top:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-lg\\@from-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-lg\\@to-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-top-xl{margin-top:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-xl\\@from-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-xl\\@to-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important}}.u-margin-top{margin-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-top\\@from-tiny{margin-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-top\\@to-tiny{margin-top:var(--grid-gutter) !important}}.u-margin-top-none{margin-top:0 !important}@media(min-width: 500px){.u-margin-top-none\\@from-tiny{margin-top:0 !important}}@media(max-width: 499px){.u-margin-top-none\\@to-tiny{margin-top:0 !important}}.u-margin-right-gutter{margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-right-gutter\\@from-tiny{margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-right-gutter\\@to-tiny{margin-right:var(--grid-gutter) !important}}.u-margin-right-xs{margin-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-xs\\@from-tiny{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-xs\\@to-tiny{margin-right:calc(5 * var(--vh, 1vh)) !important}}.u-margin-right-sm{margin-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-sm\\@from-tiny{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-sm\\@to-tiny{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-right-md{margin-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-md\\@from-tiny{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-md\\@to-tiny{margin-right:calc(10 * var(--vh, 1vh)) !important}}.u-margin-right-lg{margin-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-lg\\@from-tiny{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-lg\\@to-tiny{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-right-xl{margin-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-xl\\@from-tiny{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-xl\\@to-tiny{margin-right:calc(15 * var(--vh, 1vh)) !important}}.u-margin-right{margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-right\\@from-tiny{margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-right\\@to-tiny{margin-right:var(--grid-gutter) !important}}.u-margin-right-none{margin-right:0 !important}@media(min-width: 500px){.u-margin-right-none\\@from-tiny{margin-right:0 !important}}@media(max-width: 499px){.u-margin-right-none\\@to-tiny{margin-right:0 !important}}.u-margin-bottom-gutter{margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-bottom-gutter\\@from-tiny{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-bottom-gutter\\@to-tiny{margin-bottom:var(--grid-gutter) !important}}.u-margin-bottom-xs{margin-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-xs\\@from-tiny{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-xs\\@to-tiny{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-margin-bottom-sm{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-sm\\@from-tiny{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-sm\\@to-tiny{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-bottom-md{margin-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-md\\@from-tiny{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-md\\@to-tiny{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-margin-bottom-lg{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-lg\\@from-tiny{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-lg\\@to-tiny{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-bottom-xl{margin-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-xl\\@from-tiny{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-xl\\@to-tiny{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-margin-bottom{margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-bottom\\@from-tiny{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-bottom\\@to-tiny{margin-bottom:var(--grid-gutter) !important}}.u-margin-bottom-none{margin-bottom:0 !important}@media(min-width: 500px){.u-margin-bottom-none\\@from-tiny{margin-bottom:0 !important}}@media(max-width: 499px){.u-margin-bottom-none\\@to-tiny{margin-bottom:0 !important}}.u-margin-left-gutter{margin-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-left-gutter\\@from-tiny{margin-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-left-gutter\\@to-tiny{margin-left:var(--grid-gutter) !important}}.u-margin-left-xs{margin-left:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-xs\\@from-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-xs\\@to-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important}}.u-margin-left-sm{margin-left:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-sm\\@from-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-sm\\@to-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-left-md{margin-left:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-md\\@from-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-md\\@to-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important}}.u-margin-left-lg{margin-left:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-lg\\@from-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-lg\\@to-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-left-xl{margin-left:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-xl\\@from-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-xl\\@to-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important}}.u-margin-left{margin-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-left\\@from-tiny{margin-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-left\\@to-tiny{margin-left:var(--grid-gutter) !important}}.u-margin-left-none{margin-left:0 !important}@media(min-width: 500px){.u-margin-left-none\\@from-tiny{margin-left:0 !important}}@media(max-width: 499px){.u-margin-left-none\\@to-tiny{margin-left:0 !important}}.u-margin-x-gutter{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-x-gutter\\@from-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-x-gutter\\@to-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}.u-margin-x-xs{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-xs\\@from-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-xs\\@to-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}.u-margin-x-sm{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-sm\\@from-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-sm\\@to-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-x-md{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-md\\@from-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-md\\@to-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}.u-margin-x-lg{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-lg\\@from-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-lg\\@to-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-x-xl{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-xl\\@from-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-xl\\@to-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}.u-margin-x{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-x\\@from-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-x\\@to-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}.u-margin-x-none{margin-left:0 !important;margin-right:0 !important}@media(min-width: 500px){.u-margin-x-none\\@from-tiny{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 499px){.u-margin-x-none\\@to-tiny{margin-left:0 !important;margin-right:0 !important}}.u-margin-y-gutter{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-y-gutter\\@from-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-y-gutter\\@to-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}.u-margin-y-xs{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-xs\\@from-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-xs\\@to-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-margin-y-sm{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-sm\\@from-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-sm\\@to-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-y-md{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-md\\@from-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-md\\@to-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-margin-y-lg{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-lg\\@from-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-lg\\@to-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-y-xl{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-xl\\@from-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-xl\\@to-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-margin-y{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-y\\@from-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-y\\@to-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}.u-margin-y-none{margin-top:0 !important;margin-bottom:0 !important}@media(min-width: 500px){.u-margin-y-none\\@from-tiny{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 499px){.u-margin-y-none\\@to-tiny{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 700px){.u-padding-gutter\\@from-small{padding:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-gutter\\@to-small{padding:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-xs\\@from-small{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-xs\\@to-small{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-sm\\@from-small{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-sm\\@to-small{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-md\\@from-small{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-md\\@to-small{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-lg\\@from-small{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-lg\\@to-small{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-xl\\@from-small{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-xl\\@to-small{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding\\@from-small{padding:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding\\@to-small{padding:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-none\\@from-small{padding:0 !important}}@media(max-width: 699px){.u-padding-none\\@to-small{padding:0 !important}}@media(min-width: 700px){.u-padding-top-gutter\\@from-small{padding-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-top-gutter\\@to-small{padding-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-top-xs\\@from-small{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-xs\\@to-small{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-sm\\@from-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-sm\\@to-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-md\\@from-small{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-md\\@to-small{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-lg\\@from-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-lg\\@to-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-xl\\@from-small{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-xl\\@to-small{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top\\@from-small{padding-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-top\\@to-small{padding-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-top-none\\@from-small{padding-top:0 !important}}@media(max-width: 699px){.u-padding-top-none\\@to-small{padding-top:0 !important}}@media(min-width: 700px){.u-padding-right-gutter\\@from-small{padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-right-gutter\\@to-small{padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-right-xs\\@from-small{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-xs\\@to-small{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-sm\\@from-small{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-sm\\@to-small{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-md\\@from-small{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-md\\@to-small{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-lg\\@from-small{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-lg\\@to-small{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-xl\\@from-small{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-xl\\@to-small{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right\\@from-small{padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-right\\@to-small{padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-right-none\\@from-small{padding-right:0 !important}}@media(max-width: 699px){.u-padding-right-none\\@to-small{padding-right:0 !important}}@media(min-width: 700px){.u-padding-bottom-gutter\\@from-small{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-bottom-gutter\\@to-small{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-bottom-xs\\@from-small{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-xs\\@to-small{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-sm\\@from-small{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-sm\\@to-small{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-md\\@from-small{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-md\\@to-small{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-lg\\@from-small{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-lg\\@to-small{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-xl\\@from-small{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-xl\\@to-small{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom\\@from-small{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-bottom\\@to-small{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-bottom-none\\@from-small{padding-bottom:0 !important}}@media(max-width: 699px){.u-padding-bottom-none\\@to-small{padding-bottom:0 !important}}@media(min-width: 700px){.u-padding-left-gutter\\@from-small{padding-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-left-gutter\\@to-small{padding-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-left-xs\\@from-small{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-xs\\@to-small{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-sm\\@from-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-sm\\@to-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-md\\@from-small{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-md\\@to-small{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-lg\\@from-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-lg\\@to-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-xl\\@from-small{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-xl\\@to-small{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left\\@from-small{padding-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-left\\@to-small{padding-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-left-none\\@from-small{padding-left:0 !important}}@media(max-width: 699px){.u-padding-left-none\\@to-small{padding-left:0 !important}}@media(min-width: 700px){.u-padding-x-gutter\\@from-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-x-gutter\\@to-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-x-xs\\@from-small{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-xs\\@to-small{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-sm\\@from-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-sm\\@to-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-md\\@from-small{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-md\\@to-small{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-lg\\@from-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-lg\\@to-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-xl\\@from-small{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-xl\\@to-small{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x\\@from-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-x\\@to-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-x-none\\@from-small{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 699px){.u-padding-x-none\\@to-small{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 700px){.u-padding-y-gutter\\@from-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-y-gutter\\@to-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-y-xs\\@from-small{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-xs\\@to-small{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-sm\\@from-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-sm\\@to-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-md\\@from-small{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-md\\@to-small{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-lg\\@from-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-lg\\@to-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-xl\\@from-small{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-xl\\@to-small{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y\\@from-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-y\\@to-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-y-none\\@from-small{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 699px){.u-padding-y-none\\@to-small{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 700px){.u-margin-gutter\\@from-small{margin:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-gutter\\@to-small{margin:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-xs\\@from-small{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-xs\\@to-small{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-sm\\@from-small{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-sm\\@to-small{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-md\\@from-small{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-md\\@to-small{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-lg\\@from-small{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-lg\\@to-small{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-xl\\@from-small{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-xl\\@to-small{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin\\@from-small{margin:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin\\@to-small{margin:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-none\\@from-small{margin:0 !important}}@media(max-width: 699px){.u-margin-none\\@to-small{margin:0 !important}}@media(min-width: 700px){.u-margin-top-gutter\\@from-small{margin-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-top-gutter\\@to-small{margin-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-top-xs\\@from-small{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-xs\\@to-small{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-sm\\@from-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-sm\\@to-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-md\\@from-small{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-md\\@to-small{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-lg\\@from-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-lg\\@to-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-xl\\@from-small{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-xl\\@to-small{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top\\@from-small{margin-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-top\\@to-small{margin-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-top-none\\@from-small{margin-top:0 !important}}@media(max-width: 699px){.u-margin-top-none\\@to-small{margin-top:0 !important}}@media(min-width: 700px){.u-margin-right-gutter\\@from-small{margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-right-gutter\\@to-small{margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-right-xs\\@from-small{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-xs\\@to-small{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-sm\\@from-small{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-sm\\@to-small{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-md\\@from-small{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-md\\@to-small{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-lg\\@from-small{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-lg\\@to-small{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-xl\\@from-small{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-xl\\@to-small{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right\\@from-small{margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-right\\@to-small{margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-right-none\\@from-small{margin-right:0 !important}}@media(max-width: 699px){.u-margin-right-none\\@to-small{margin-right:0 !important}}@media(min-width: 700px){.u-margin-bottom-gutter\\@from-small{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-bottom-gutter\\@to-small{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-bottom-xs\\@from-small{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-xs\\@to-small{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-sm\\@from-small{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-sm\\@to-small{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-md\\@from-small{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-md\\@to-small{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-lg\\@from-small{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-lg\\@to-small{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-xl\\@from-small{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-xl\\@to-small{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom\\@from-small{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-bottom\\@to-small{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-bottom-none\\@from-small{margin-bottom:0 !important}}@media(max-width: 699px){.u-margin-bottom-none\\@to-small{margin-bottom:0 !important}}@media(min-width: 700px){.u-margin-left-gutter\\@from-small{margin-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-left-gutter\\@to-small{margin-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-left-xs\\@from-small{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-xs\\@to-small{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-sm\\@from-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-sm\\@to-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-md\\@from-small{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-md\\@to-small{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-lg\\@from-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-lg\\@to-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-xl\\@from-small{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-xl\\@to-small{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left\\@from-small{margin-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-left\\@to-small{margin-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-left-none\\@from-small{margin-left:0 !important}}@media(max-width: 699px){.u-margin-left-none\\@to-small{margin-left:0 !important}}@media(min-width: 700px){.u-margin-x-gutter\\@from-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-x-gutter\\@to-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-x-xs\\@from-small{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-xs\\@to-small{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-sm\\@from-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-sm\\@to-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-md\\@from-small{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-md\\@to-small{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-lg\\@from-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-lg\\@to-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-xl\\@from-small{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-xl\\@to-small{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x\\@from-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-x\\@to-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-x-none\\@from-small{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 699px){.u-margin-x-none\\@to-small{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 700px){.u-margin-y-gutter\\@from-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-y-gutter\\@to-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-y-xs\\@from-small{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-xs\\@to-small{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-sm\\@from-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-sm\\@to-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-md\\@from-small{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-md\\@to-small{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-lg\\@from-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-lg\\@to-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-xl\\@from-small{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-xl\\@to-small{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y\\@from-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-y\\@to-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-y-none\\@from-small{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 699px){.u-margin-y-none\\@to-small{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1000px){.u-padding-gutter\\@from-medium{padding:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-gutter\\@to-medium{padding:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-xs\\@from-medium{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-xs\\@to-medium{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-sm\\@from-medium{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-sm\\@to-medium{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-md\\@from-medium{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-md\\@to-medium{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-lg\\@from-medium{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-lg\\@to-medium{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-xl\\@from-medium{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-xl\\@to-medium{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding\\@from-medium{padding:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding\\@to-medium{padding:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-none\\@from-medium{padding:0 !important}}@media(max-width: 999px){.u-padding-none\\@to-medium{padding:0 !important}}@media(min-width: 1000px){.u-padding-top-gutter\\@from-medium{padding-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-top-gutter\\@to-medium{padding-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-top-xs\\@from-medium{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-xs\\@to-medium{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-sm\\@from-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-sm\\@to-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-md\\@from-medium{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-md\\@to-medium{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-lg\\@from-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-lg\\@to-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-xl\\@from-medium{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-xl\\@to-medium{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top\\@from-medium{padding-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-top\\@to-medium{padding-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-top-none\\@from-medium{padding-top:0 !important}}@media(max-width: 999px){.u-padding-top-none\\@to-medium{padding-top:0 !important}}@media(min-width: 1000px){.u-padding-right-gutter\\@from-medium{padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-right-gutter\\@to-medium{padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-right-xs\\@from-medium{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-xs\\@to-medium{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-sm\\@from-medium{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-sm\\@to-medium{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-md\\@from-medium{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-md\\@to-medium{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-lg\\@from-medium{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-lg\\@to-medium{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-xl\\@from-medium{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-xl\\@to-medium{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right\\@from-medium{padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-right\\@to-medium{padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-right-none\\@from-medium{padding-right:0 !important}}@media(max-width: 999px){.u-padding-right-none\\@to-medium{padding-right:0 !important}}@media(min-width: 1000px){.u-padding-bottom-gutter\\@from-medium{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-bottom-gutter\\@to-medium{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-bottom-xs\\@from-medium{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-xs\\@to-medium{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-sm\\@from-medium{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-sm\\@to-medium{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-md\\@from-medium{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-md\\@to-medium{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-lg\\@from-medium{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-lg\\@to-medium{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-xl\\@from-medium{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-xl\\@to-medium{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom\\@from-medium{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-bottom\\@to-medium{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-bottom-none\\@from-medium{padding-bottom:0 !important}}@media(max-width: 999px){.u-padding-bottom-none\\@to-medium{padding-bottom:0 !important}}@media(min-width: 1000px){.u-padding-left-gutter\\@from-medium{padding-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-left-gutter\\@to-medium{padding-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-left-xs\\@from-medium{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-xs\\@to-medium{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-sm\\@from-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-sm\\@to-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-md\\@from-medium{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-md\\@to-medium{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-lg\\@from-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-lg\\@to-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-xl\\@from-medium{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-xl\\@to-medium{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left\\@from-medium{padding-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-left\\@to-medium{padding-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-left-none\\@from-medium{padding-left:0 !important}}@media(max-width: 999px){.u-padding-left-none\\@to-medium{padding-left:0 !important}}@media(min-width: 1000px){.u-padding-x-gutter\\@from-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-x-gutter\\@to-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-x-xs\\@from-medium{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-xs\\@to-medium{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-sm\\@from-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-sm\\@to-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-md\\@from-medium{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-md\\@to-medium{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-lg\\@from-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-lg\\@to-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-xl\\@from-medium{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-xl\\@to-medium{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x\\@from-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-x\\@to-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-x-none\\@from-medium{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 999px){.u-padding-x-none\\@to-medium{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1000px){.u-padding-y-gutter\\@from-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-y-gutter\\@to-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-y-xs\\@from-medium{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-xs\\@to-medium{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-sm\\@from-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-sm\\@to-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-md\\@from-medium{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-md\\@to-medium{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-lg\\@from-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-lg\\@to-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-xl\\@from-medium{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-xl\\@to-medium{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y\\@from-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-y\\@to-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-y-none\\@from-medium{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 999px){.u-padding-y-none\\@to-medium{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1000px){.u-margin-gutter\\@from-medium{margin:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-gutter\\@to-medium{margin:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-xs\\@from-medium{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-xs\\@to-medium{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-sm\\@from-medium{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-sm\\@to-medium{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-md\\@from-medium{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-md\\@to-medium{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-lg\\@from-medium{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-lg\\@to-medium{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-xl\\@from-medium{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-xl\\@to-medium{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin\\@from-medium{margin:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin\\@to-medium{margin:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-none\\@from-medium{margin:0 !important}}@media(max-width: 999px){.u-margin-none\\@to-medium{margin:0 !important}}@media(min-width: 1000px){.u-margin-top-gutter\\@from-medium{margin-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-top-gutter\\@to-medium{margin-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-top-xs\\@from-medium{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-xs\\@to-medium{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-sm\\@from-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-sm\\@to-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-md\\@from-medium{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-md\\@to-medium{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-lg\\@from-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-lg\\@to-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-xl\\@from-medium{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-xl\\@to-medium{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top\\@from-medium{margin-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-top\\@to-medium{margin-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-top-none\\@from-medium{margin-top:0 !important}}@media(max-width: 999px){.u-margin-top-none\\@to-medium{margin-top:0 !important}}@media(min-width: 1000px){.u-margin-right-gutter\\@from-medium{margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-right-gutter\\@to-medium{margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-right-xs\\@from-medium{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-xs\\@to-medium{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-sm\\@from-medium{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-sm\\@to-medium{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-md\\@from-medium{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-md\\@to-medium{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-lg\\@from-medium{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-lg\\@to-medium{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-xl\\@from-medium{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-xl\\@to-medium{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right\\@from-medium{margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-right\\@to-medium{margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-right-none\\@from-medium{margin-right:0 !important}}@media(max-width: 999px){.u-margin-right-none\\@to-medium{margin-right:0 !important}}@media(min-width: 1000px){.u-margin-bottom-gutter\\@from-medium{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-bottom-gutter\\@to-medium{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-bottom-xs\\@from-medium{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-xs\\@to-medium{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-sm\\@from-medium{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-sm\\@to-medium{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-md\\@from-medium{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-md\\@to-medium{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-lg\\@from-medium{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-lg\\@to-medium{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-xl\\@from-medium{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-xl\\@to-medium{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom\\@from-medium{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-bottom\\@to-medium{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-bottom-none\\@from-medium{margin-bottom:0 !important}}@media(max-width: 999px){.u-margin-bottom-none\\@to-medium{margin-bottom:0 !important}}@media(min-width: 1000px){.u-margin-left-gutter\\@from-medium{margin-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-left-gutter\\@to-medium{margin-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-left-xs\\@from-medium{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-xs\\@to-medium{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-sm\\@from-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-sm\\@to-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-md\\@from-medium{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-md\\@to-medium{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-lg\\@from-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-lg\\@to-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-xl\\@from-medium{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-xl\\@to-medium{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left\\@from-medium{margin-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-left\\@to-medium{margin-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-left-none\\@from-medium{margin-left:0 !important}}@media(max-width: 999px){.u-margin-left-none\\@to-medium{margin-left:0 !important}}@media(min-width: 1000px){.u-margin-x-gutter\\@from-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-x-gutter\\@to-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-x-xs\\@from-medium{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-xs\\@to-medium{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-sm\\@from-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-sm\\@to-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-md\\@from-medium{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-md\\@to-medium{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-lg\\@from-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-lg\\@to-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-xl\\@from-medium{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-xl\\@to-medium{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x\\@from-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-x\\@to-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-x-none\\@from-medium{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 999px){.u-margin-x-none\\@to-medium{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1000px){.u-margin-y-gutter\\@from-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-y-gutter\\@to-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-y-xs\\@from-medium{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-xs\\@to-medium{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-sm\\@from-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-sm\\@to-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-md\\@from-medium{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-md\\@to-medium{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-lg\\@from-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-lg\\@to-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-xl\\@from-medium{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-xl\\@to-medium{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y\\@from-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-y\\@to-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-y-none\\@from-medium{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 999px){.u-margin-y-none\\@to-medium{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1200px){.u-padding-gutter\\@from-large{padding:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-gutter\\@to-large{padding:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-xs\\@from-large{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-xs\\@to-large{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-sm\\@from-large{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-sm\\@to-large{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-md\\@from-large{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-md\\@to-large{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-lg\\@from-large{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-lg\\@to-large{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-xl\\@from-large{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-xl\\@to-large{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding\\@from-large{padding:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding\\@to-large{padding:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-none\\@from-large{padding:0 !important}}@media(max-width: 1199px){.u-padding-none\\@to-large{padding:0 !important}}@media(min-width: 1200px){.u-padding-top-gutter\\@from-large{padding-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-top-gutter\\@to-large{padding-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-top-xs\\@from-large{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-xs\\@to-large{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-sm\\@from-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-sm\\@to-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-md\\@from-large{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-md\\@to-large{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-lg\\@from-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-lg\\@to-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-xl\\@from-large{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-xl\\@to-large{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top\\@from-large{padding-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-top\\@to-large{padding-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-top-none\\@from-large{padding-top:0 !important}}@media(max-width: 1199px){.u-padding-top-none\\@to-large{padding-top:0 !important}}@media(min-width: 1200px){.u-padding-right-gutter\\@from-large{padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-right-gutter\\@to-large{padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-right-xs\\@from-large{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-xs\\@to-large{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-sm\\@from-large{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-sm\\@to-large{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-md\\@from-large{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-md\\@to-large{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-lg\\@from-large{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-lg\\@to-large{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-xl\\@from-large{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-xl\\@to-large{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right\\@from-large{padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-right\\@to-large{padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-right-none\\@from-large{padding-right:0 !important}}@media(max-width: 1199px){.u-padding-right-none\\@to-large{padding-right:0 !important}}@media(min-width: 1200px){.u-padding-bottom-gutter\\@from-large{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-bottom-gutter\\@to-large{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-bottom-xs\\@from-large{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-xs\\@to-large{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-sm\\@from-large{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-sm\\@to-large{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-md\\@from-large{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-md\\@to-large{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-lg\\@from-large{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-lg\\@to-large{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-xl\\@from-large{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-xl\\@to-large{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom\\@from-large{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-bottom\\@to-large{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-bottom-none\\@from-large{padding-bottom:0 !important}}@media(max-width: 1199px){.u-padding-bottom-none\\@to-large{padding-bottom:0 !important}}@media(min-width: 1200px){.u-padding-left-gutter\\@from-large{padding-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-left-gutter\\@to-large{padding-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-left-xs\\@from-large{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-xs\\@to-large{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-sm\\@from-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-sm\\@to-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-md\\@from-large{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-md\\@to-large{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-lg\\@from-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-lg\\@to-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-xl\\@from-large{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-xl\\@to-large{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left\\@from-large{padding-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-left\\@to-large{padding-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-left-none\\@from-large{padding-left:0 !important}}@media(max-width: 1199px){.u-padding-left-none\\@to-large{padding-left:0 !important}}@media(min-width: 1200px){.u-padding-x-gutter\\@from-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-x-gutter\\@to-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-x-xs\\@from-large{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-xs\\@to-large{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-sm\\@from-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-sm\\@to-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-md\\@from-large{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-md\\@to-large{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-lg\\@from-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-lg\\@to-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-xl\\@from-large{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-xl\\@to-large{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x\\@from-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-x\\@to-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-x-none\\@from-large{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1199px){.u-padding-x-none\\@to-large{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1200px){.u-padding-y-gutter\\@from-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-y-gutter\\@to-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-y-xs\\@from-large{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-xs\\@to-large{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-sm\\@from-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-sm\\@to-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-md\\@from-large{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-md\\@to-large{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-lg\\@from-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-lg\\@to-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-xl\\@from-large{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-xl\\@to-large{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y\\@from-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-y\\@to-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-y-none\\@from-large{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1199px){.u-padding-y-none\\@to-large{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1200px){.u-margin-gutter\\@from-large{margin:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-gutter\\@to-large{margin:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-xs\\@from-large{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-xs\\@to-large{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-sm\\@from-large{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-sm\\@to-large{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-md\\@from-large{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-md\\@to-large{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-lg\\@from-large{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-lg\\@to-large{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-xl\\@from-large{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-xl\\@to-large{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin\\@from-large{margin:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin\\@to-large{margin:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-none\\@from-large{margin:0 !important}}@media(max-width: 1199px){.u-margin-none\\@to-large{margin:0 !important}}@media(min-width: 1200px){.u-margin-top-gutter\\@from-large{margin-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-top-gutter\\@to-large{margin-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-top-xs\\@from-large{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-xs\\@to-large{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-sm\\@from-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-sm\\@to-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-md\\@from-large{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-md\\@to-large{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-lg\\@from-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-lg\\@to-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-xl\\@from-large{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-xl\\@to-large{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top\\@from-large{margin-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-top\\@to-large{margin-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-top-none\\@from-large{margin-top:0 !important}}@media(max-width: 1199px){.u-margin-top-none\\@to-large{margin-top:0 !important}}@media(min-width: 1200px){.u-margin-right-gutter\\@from-large{margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-right-gutter\\@to-large{margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-right-xs\\@from-large{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-xs\\@to-large{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-sm\\@from-large{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-sm\\@to-large{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-md\\@from-large{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-md\\@to-large{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-lg\\@from-large{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-lg\\@to-large{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-xl\\@from-large{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-xl\\@to-large{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right\\@from-large{margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-right\\@to-large{margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-right-none\\@from-large{margin-right:0 !important}}@media(max-width: 1199px){.u-margin-right-none\\@to-large{margin-right:0 !important}}@media(min-width: 1200px){.u-margin-bottom-gutter\\@from-large{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-bottom-gutter\\@to-large{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-bottom-xs\\@from-large{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-xs\\@to-large{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-sm\\@from-large{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-sm\\@to-large{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-md\\@from-large{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-md\\@to-large{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-lg\\@from-large{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-lg\\@to-large{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-xl\\@from-large{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-xl\\@to-large{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom\\@from-large{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-bottom\\@to-large{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-bottom-none\\@from-large{margin-bottom:0 !important}}@media(max-width: 1199px){.u-margin-bottom-none\\@to-large{margin-bottom:0 !important}}@media(min-width: 1200px){.u-margin-left-gutter\\@from-large{margin-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-left-gutter\\@to-large{margin-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-left-xs\\@from-large{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-xs\\@to-large{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-sm\\@from-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-sm\\@to-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-md\\@from-large{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-md\\@to-large{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-lg\\@from-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-lg\\@to-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-xl\\@from-large{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-xl\\@to-large{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left\\@from-large{margin-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-left\\@to-large{margin-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-left-none\\@from-large{margin-left:0 !important}}@media(max-width: 1199px){.u-margin-left-none\\@to-large{margin-left:0 !important}}@media(min-width: 1200px){.u-margin-x-gutter\\@from-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-x-gutter\\@to-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-x-xs\\@from-large{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-xs\\@to-large{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-sm\\@from-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-sm\\@to-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-md\\@from-large{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-md\\@to-large{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-lg\\@from-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-lg\\@to-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-xl\\@from-large{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-xl\\@to-large{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x\\@from-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-x\\@to-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-x-none\\@from-large{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1199px){.u-margin-x-none\\@to-large{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1200px){.u-margin-y-gutter\\@from-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-y-gutter\\@to-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-y-xs\\@from-large{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-xs\\@to-large{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-sm\\@from-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-sm\\@to-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-md\\@from-large{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-md\\@to-large{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-lg\\@from-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-lg\\@to-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-xl\\@from-large{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-xl\\@to-large{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y\\@from-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-y\\@to-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-y-none\\@from-large{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1199px){.u-margin-y-none\\@to-large{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1400px){.u-padding-gutter\\@from-big{padding:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-gutter\\@to-big{padding:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-xs\\@from-big{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-xs\\@to-big{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-sm\\@from-big{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-sm\\@to-big{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-md\\@from-big{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-md\\@to-big{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-lg\\@from-big{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-lg\\@to-big{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-xl\\@from-big{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-xl\\@to-big{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding\\@from-big{padding:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding\\@to-big{padding:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-none\\@from-big{padding:0 !important}}@media(max-width: 1399px){.u-padding-none\\@to-big{padding:0 !important}}@media(min-width: 1400px){.u-padding-top-gutter\\@from-big{padding-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-top-gutter\\@to-big{padding-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-top-xs\\@from-big{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-xs\\@to-big{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-sm\\@from-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-sm\\@to-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-md\\@from-big{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-md\\@to-big{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-lg\\@from-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-lg\\@to-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-xl\\@from-big{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-xl\\@to-big{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top\\@from-big{padding-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-top\\@to-big{padding-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-top-none\\@from-big{padding-top:0 !important}}@media(max-width: 1399px){.u-padding-top-none\\@to-big{padding-top:0 !important}}@media(min-width: 1400px){.u-padding-right-gutter\\@from-big{padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-right-gutter\\@to-big{padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-right-xs\\@from-big{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-xs\\@to-big{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-sm\\@from-big{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-sm\\@to-big{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-md\\@from-big{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-md\\@to-big{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-lg\\@from-big{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-lg\\@to-big{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-xl\\@from-big{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-xl\\@to-big{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right\\@from-big{padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-right\\@to-big{padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-right-none\\@from-big{padding-right:0 !important}}@media(max-width: 1399px){.u-padding-right-none\\@to-big{padding-right:0 !important}}@media(min-width: 1400px){.u-padding-bottom-gutter\\@from-big{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-bottom-gutter\\@to-big{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-bottom-xs\\@from-big{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-xs\\@to-big{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-sm\\@from-big{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-sm\\@to-big{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-md\\@from-big{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-md\\@to-big{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-lg\\@from-big{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-lg\\@to-big{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-xl\\@from-big{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-xl\\@to-big{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom\\@from-big{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-bottom\\@to-big{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-bottom-none\\@from-big{padding-bottom:0 !important}}@media(max-width: 1399px){.u-padding-bottom-none\\@to-big{padding-bottom:0 !important}}@media(min-width: 1400px){.u-padding-left-gutter\\@from-big{padding-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-left-gutter\\@to-big{padding-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-left-xs\\@from-big{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-xs\\@to-big{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-sm\\@from-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-sm\\@to-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-md\\@from-big{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-md\\@to-big{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-lg\\@from-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-lg\\@to-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-xl\\@from-big{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-xl\\@to-big{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left\\@from-big{padding-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-left\\@to-big{padding-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-left-none\\@from-big{padding-left:0 !important}}@media(max-width: 1399px){.u-padding-left-none\\@to-big{padding-left:0 !important}}@media(min-width: 1400px){.u-padding-x-gutter\\@from-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-x-gutter\\@to-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-x-xs\\@from-big{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-xs\\@to-big{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-sm\\@from-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-sm\\@to-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-md\\@from-big{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-md\\@to-big{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-lg\\@from-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-lg\\@to-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-xl\\@from-big{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-xl\\@to-big{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x\\@from-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-x\\@to-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-x-none\\@from-big{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1399px){.u-padding-x-none\\@to-big{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1400px){.u-padding-y-gutter\\@from-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-y-gutter\\@to-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-y-xs\\@from-big{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-xs\\@to-big{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-sm\\@from-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-sm\\@to-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-md\\@from-big{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-md\\@to-big{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-lg\\@from-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-lg\\@to-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-xl\\@from-big{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-xl\\@to-big{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y\\@from-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-y\\@to-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-y-none\\@from-big{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1399px){.u-padding-y-none\\@to-big{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1400px){.u-margin-gutter\\@from-big{margin:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-gutter\\@to-big{margin:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-xs\\@from-big{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-xs\\@to-big{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-sm\\@from-big{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-sm\\@to-big{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-md\\@from-big{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-md\\@to-big{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-lg\\@from-big{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-lg\\@to-big{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-xl\\@from-big{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-xl\\@to-big{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin\\@from-big{margin:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin\\@to-big{margin:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-none\\@from-big{margin:0 !important}}@media(max-width: 1399px){.u-margin-none\\@to-big{margin:0 !important}}@media(min-width: 1400px){.u-margin-top-gutter\\@from-big{margin-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-top-gutter\\@to-big{margin-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-top-xs\\@from-big{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-xs\\@to-big{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-sm\\@from-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-sm\\@to-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-md\\@from-big{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-md\\@to-big{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-lg\\@from-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-lg\\@to-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-xl\\@from-big{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-xl\\@to-big{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top\\@from-big{margin-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-top\\@to-big{margin-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-top-none\\@from-big{margin-top:0 !important}}@media(max-width: 1399px){.u-margin-top-none\\@to-big{margin-top:0 !important}}@media(min-width: 1400px){.u-margin-right-gutter\\@from-big{margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-right-gutter\\@to-big{margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-right-xs\\@from-big{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-xs\\@to-big{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-sm\\@from-big{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-sm\\@to-big{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-md\\@from-big{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-md\\@to-big{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-lg\\@from-big{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-lg\\@to-big{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-xl\\@from-big{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-xl\\@to-big{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right\\@from-big{margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-right\\@to-big{margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-right-none\\@from-big{margin-right:0 !important}}@media(max-width: 1399px){.u-margin-right-none\\@to-big{margin-right:0 !important}}@media(min-width: 1400px){.u-margin-bottom-gutter\\@from-big{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-bottom-gutter\\@to-big{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-bottom-xs\\@from-big{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-xs\\@to-big{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-sm\\@from-big{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-sm\\@to-big{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-md\\@from-big{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-md\\@to-big{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-lg\\@from-big{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-lg\\@to-big{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-xl\\@from-big{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-xl\\@to-big{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom\\@from-big{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-bottom\\@to-big{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-bottom-none\\@from-big{margin-bottom:0 !important}}@media(max-width: 1399px){.u-margin-bottom-none\\@to-big{margin-bottom:0 !important}}@media(min-width: 1400px){.u-margin-left-gutter\\@from-big{margin-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-left-gutter\\@to-big{margin-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-left-xs\\@from-big{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-xs\\@to-big{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-sm\\@from-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-sm\\@to-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-md\\@from-big{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-md\\@to-big{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-lg\\@from-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-lg\\@to-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-xl\\@from-big{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-xl\\@to-big{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left\\@from-big{margin-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-left\\@to-big{margin-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-left-none\\@from-big{margin-left:0 !important}}@media(max-width: 1399px){.u-margin-left-none\\@to-big{margin-left:0 !important}}@media(min-width: 1400px){.u-margin-x-gutter\\@from-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-x-gutter\\@to-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-x-xs\\@from-big{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-xs\\@to-big{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-sm\\@from-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-sm\\@to-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-md\\@from-big{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-md\\@to-big{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-lg\\@from-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-lg\\@to-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-xl\\@from-big{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-xl\\@to-big{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x\\@from-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-x\\@to-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-x-none\\@from-big{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1399px){.u-margin-x-none\\@to-big{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1400px){.u-margin-y-gutter\\@from-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-y-gutter\\@to-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-y-xs\\@from-big{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-xs\\@to-big{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-sm\\@from-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-sm\\@to-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-md\\@from-big{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-md\\@to-big{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-lg\\@from-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-lg\\@to-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-xl\\@from-big{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-xl\\@to-big{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y\\@from-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-y\\@to-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-y-none\\@from-big{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1399px){.u-margin-y-none\\@to-big{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1600px){.u-padding-gutter\\@from-huge{padding:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-gutter\\@to-huge{padding:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-xs\\@from-huge{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-xs\\@to-huge{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-sm\\@from-huge{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-sm\\@to-huge{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-md\\@from-huge{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-md\\@to-huge{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-lg\\@from-huge{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-lg\\@to-huge{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-xl\\@from-huge{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-xl\\@to-huge{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding\\@from-huge{padding:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding\\@to-huge{padding:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-none\\@from-huge{padding:0 !important}}@media(max-width: 1599px){.u-padding-none\\@to-huge{padding:0 !important}}@media(min-width: 1600px){.u-padding-top-gutter\\@from-huge{padding-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-top-gutter\\@to-huge{padding-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-top-xs\\@from-huge{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-xs\\@to-huge{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-sm\\@from-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-sm\\@to-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-md\\@from-huge{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-md\\@to-huge{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-lg\\@from-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-lg\\@to-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-xl\\@from-huge{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-xl\\@to-huge{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top\\@from-huge{padding-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-top\\@to-huge{padding-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-top-none\\@from-huge{padding-top:0 !important}}@media(max-width: 1599px){.u-padding-top-none\\@to-huge{padding-top:0 !important}}@media(min-width: 1600px){.u-padding-right-gutter\\@from-huge{padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-right-gutter\\@to-huge{padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-right-xs\\@from-huge{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-xs\\@to-huge{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-sm\\@from-huge{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-sm\\@to-huge{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-md\\@from-huge{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-md\\@to-huge{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-lg\\@from-huge{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-lg\\@to-huge{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-xl\\@from-huge{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-xl\\@to-huge{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right\\@from-huge{padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-right\\@to-huge{padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-right-none\\@from-huge{padding-right:0 !important}}@media(max-width: 1599px){.u-padding-right-none\\@to-huge{padding-right:0 !important}}@media(min-width: 1600px){.u-padding-bottom-gutter\\@from-huge{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-bottom-gutter\\@to-huge{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-bottom-xs\\@from-huge{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-xs\\@to-huge{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-sm\\@from-huge{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-sm\\@to-huge{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-md\\@from-huge{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-md\\@to-huge{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-lg\\@from-huge{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-lg\\@to-huge{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-xl\\@from-huge{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-xl\\@to-huge{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom\\@from-huge{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-bottom\\@to-huge{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-bottom-none\\@from-huge{padding-bottom:0 !important}}@media(max-width: 1599px){.u-padding-bottom-none\\@to-huge{padding-bottom:0 !important}}@media(min-width: 1600px){.u-padding-left-gutter\\@from-huge{padding-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-left-gutter\\@to-huge{padding-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-left-xs\\@from-huge{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-xs\\@to-huge{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-sm\\@from-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-sm\\@to-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-md\\@from-huge{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-md\\@to-huge{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-lg\\@from-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-lg\\@to-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-xl\\@from-huge{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-xl\\@to-huge{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left\\@from-huge{padding-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-left\\@to-huge{padding-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-left-none\\@from-huge{padding-left:0 !important}}@media(max-width: 1599px){.u-padding-left-none\\@to-huge{padding-left:0 !important}}@media(min-width: 1600px){.u-padding-x-gutter\\@from-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-x-gutter\\@to-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-x-xs\\@from-huge{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-xs\\@to-huge{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-sm\\@from-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-sm\\@to-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-md\\@from-huge{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-md\\@to-huge{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-lg\\@from-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-lg\\@to-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-xl\\@from-huge{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-xl\\@to-huge{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x\\@from-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-x\\@to-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-x-none\\@from-huge{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1599px){.u-padding-x-none\\@to-huge{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1600px){.u-padding-y-gutter\\@from-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-y-gutter\\@to-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-y-xs\\@from-huge{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-xs\\@to-huge{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-sm\\@from-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-sm\\@to-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-md\\@from-huge{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-md\\@to-huge{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-lg\\@from-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-lg\\@to-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-xl\\@from-huge{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-xl\\@to-huge{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y\\@from-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-y\\@to-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-y-none\\@from-huge{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1599px){.u-padding-y-none\\@to-huge{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1600px){.u-margin-gutter\\@from-huge{margin:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-gutter\\@to-huge{margin:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-xs\\@from-huge{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-xs\\@to-huge{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-sm\\@from-huge{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-sm\\@to-huge{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-md\\@from-huge{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-md\\@to-huge{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-lg\\@from-huge{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-lg\\@to-huge{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-xl\\@from-huge{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-xl\\@to-huge{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin\\@from-huge{margin:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin\\@to-huge{margin:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-none\\@from-huge{margin:0 !important}}@media(max-width: 1599px){.u-margin-none\\@to-huge{margin:0 !important}}@media(min-width: 1600px){.u-margin-top-gutter\\@from-huge{margin-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-top-gutter\\@to-huge{margin-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-top-xs\\@from-huge{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-xs\\@to-huge{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-sm\\@from-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-sm\\@to-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-md\\@from-huge{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-md\\@to-huge{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-lg\\@from-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-lg\\@to-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-xl\\@from-huge{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-xl\\@to-huge{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top\\@from-huge{margin-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-top\\@to-huge{margin-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-top-none\\@from-huge{margin-top:0 !important}}@media(max-width: 1599px){.u-margin-top-none\\@to-huge{margin-top:0 !important}}@media(min-width: 1600px){.u-margin-right-gutter\\@from-huge{margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-right-gutter\\@to-huge{margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-right-xs\\@from-huge{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-xs\\@to-huge{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-sm\\@from-huge{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-sm\\@to-huge{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-md\\@from-huge{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-md\\@to-huge{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-lg\\@from-huge{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-lg\\@to-huge{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-xl\\@from-huge{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-xl\\@to-huge{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right\\@from-huge{margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-right\\@to-huge{margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-right-none\\@from-huge{margin-right:0 !important}}@media(max-width: 1599px){.u-margin-right-none\\@to-huge{margin-right:0 !important}}@media(min-width: 1600px){.u-margin-bottom-gutter\\@from-huge{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-bottom-gutter\\@to-huge{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-bottom-xs\\@from-huge{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-xs\\@to-huge{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-sm\\@from-huge{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-sm\\@to-huge{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-md\\@from-huge{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-md\\@to-huge{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-lg\\@from-huge{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-lg\\@to-huge{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-xl\\@from-huge{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-xl\\@to-huge{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom\\@from-huge{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-bottom\\@to-huge{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-bottom-none\\@from-huge{margin-bottom:0 !important}}@media(max-width: 1599px){.u-margin-bottom-none\\@to-huge{margin-bottom:0 !important}}@media(min-width: 1600px){.u-margin-left-gutter\\@from-huge{margin-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-left-gutter\\@to-huge{margin-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-left-xs\\@from-huge{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-xs\\@to-huge{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-sm\\@from-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-sm\\@to-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-md\\@from-huge{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-md\\@to-huge{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-lg\\@from-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-lg\\@to-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-xl\\@from-huge{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-xl\\@to-huge{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left\\@from-huge{margin-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-left\\@to-huge{margin-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-left-none\\@from-huge{margin-left:0 !important}}@media(max-width: 1599px){.u-margin-left-none\\@to-huge{margin-left:0 !important}}@media(min-width: 1600px){.u-margin-x-gutter\\@from-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-x-gutter\\@to-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-x-xs\\@from-huge{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-xs\\@to-huge{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-sm\\@from-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-sm\\@to-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-md\\@from-huge{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-md\\@to-huge{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-lg\\@from-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-lg\\@to-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-xl\\@from-huge{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-xl\\@to-huge{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x\\@from-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-x\\@to-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-x-none\\@from-huge{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1599px){.u-margin-x-none\\@to-huge{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1600px){.u-margin-y-gutter\\@from-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-y-gutter\\@to-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-y-xs\\@from-huge{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-xs\\@to-huge{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-sm\\@from-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-sm\\@to-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-md\\@from-huge{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-md\\@to-huge{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-lg\\@from-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-lg\\@to-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-xl\\@from-huge{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-xl\\@to-huge{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y\\@from-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-y\\@to-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-y-none\\@from-huge{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1599px){.u-margin-y-none\\@to-huge{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1800px){.u-padding-gutter\\@from-enormous{padding:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-gutter\\@to-enormous{padding:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-xs\\@from-enormous{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-xs\\@to-enormous{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-sm\\@from-enormous{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-sm\\@to-enormous{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-md\\@from-enormous{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-md\\@to-enormous{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-lg\\@from-enormous{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-lg\\@to-enormous{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-xl\\@from-enormous{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-xl\\@to-enormous{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding\\@from-enormous{padding:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding\\@to-enormous{padding:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-none\\@from-enormous{padding:0 !important}}@media(max-width: 1799px){.u-padding-none\\@to-enormous{padding:0 !important}}@media(min-width: 1800px){.u-padding-top-gutter\\@from-enormous{padding-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-top-gutter\\@to-enormous{padding-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-top-xs\\@from-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-xs\\@to-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-sm\\@from-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-sm\\@to-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-md\\@from-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-md\\@to-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-lg\\@from-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-lg\\@to-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-xl\\@from-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-xl\\@to-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top\\@from-enormous{padding-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-top\\@to-enormous{padding-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-top-none\\@from-enormous{padding-top:0 !important}}@media(max-width: 1799px){.u-padding-top-none\\@to-enormous{padding-top:0 !important}}@media(min-width: 1800px){.u-padding-right-gutter\\@from-enormous{padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-right-gutter\\@to-enormous{padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-right-xs\\@from-enormous{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-xs\\@to-enormous{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-sm\\@from-enormous{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-sm\\@to-enormous{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-md\\@from-enormous{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-md\\@to-enormous{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-lg\\@from-enormous{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-lg\\@to-enormous{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-xl\\@from-enormous{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-xl\\@to-enormous{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right\\@from-enormous{padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-right\\@to-enormous{padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-right-none\\@from-enormous{padding-right:0 !important}}@media(max-width: 1799px){.u-padding-right-none\\@to-enormous{padding-right:0 !important}}@media(min-width: 1800px){.u-padding-bottom-gutter\\@from-enormous{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-bottom-gutter\\@to-enormous{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-bottom-xs\\@from-enormous{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-xs\\@to-enormous{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-sm\\@from-enormous{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-sm\\@to-enormous{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-md\\@from-enormous{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-md\\@to-enormous{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-lg\\@from-enormous{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-lg\\@to-enormous{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-xl\\@from-enormous{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-xl\\@to-enormous{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom\\@from-enormous{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-bottom\\@to-enormous{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-bottom-none\\@from-enormous{padding-bottom:0 !important}}@media(max-width: 1799px){.u-padding-bottom-none\\@to-enormous{padding-bottom:0 !important}}@media(min-width: 1800px){.u-padding-left-gutter\\@from-enormous{padding-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-left-gutter\\@to-enormous{padding-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-left-xs\\@from-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-xs\\@to-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-sm\\@from-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-sm\\@to-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-md\\@from-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-md\\@to-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-lg\\@from-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-lg\\@to-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-xl\\@from-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-xl\\@to-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left\\@from-enormous{padding-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-left\\@to-enormous{padding-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-left-none\\@from-enormous{padding-left:0 !important}}@media(max-width: 1799px){.u-padding-left-none\\@to-enormous{padding-left:0 !important}}@media(min-width: 1800px){.u-padding-x-gutter\\@from-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-x-gutter\\@to-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-x-xs\\@from-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-xs\\@to-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-sm\\@from-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-sm\\@to-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-md\\@from-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-md\\@to-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-lg\\@from-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-lg\\@to-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-xl\\@from-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-xl\\@to-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x\\@from-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-x\\@to-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-x-none\\@from-enormous{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1799px){.u-padding-x-none\\@to-enormous{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1800px){.u-padding-y-gutter\\@from-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-y-gutter\\@to-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-y-xs\\@from-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-xs\\@to-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-sm\\@from-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-sm\\@to-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-md\\@from-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-md\\@to-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-lg\\@from-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-lg\\@to-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-xl\\@from-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-xl\\@to-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y\\@from-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-y\\@to-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-y-none\\@from-enormous{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1799px){.u-padding-y-none\\@to-enormous{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1800px){.u-margin-gutter\\@from-enormous{margin:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-gutter\\@to-enormous{margin:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-xs\\@from-enormous{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-xs\\@to-enormous{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-sm\\@from-enormous{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-sm\\@to-enormous{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-md\\@from-enormous{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-md\\@to-enormous{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-lg\\@from-enormous{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-lg\\@to-enormous{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-xl\\@from-enormous{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-xl\\@to-enormous{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin\\@from-enormous{margin:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin\\@to-enormous{margin:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-none\\@from-enormous{margin:0 !important}}@media(max-width: 1799px){.u-margin-none\\@to-enormous{margin:0 !important}}@media(min-width: 1800px){.u-margin-top-gutter\\@from-enormous{margin-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-top-gutter\\@to-enormous{margin-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-top-xs\\@from-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-xs\\@to-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-sm\\@from-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-sm\\@to-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-md\\@from-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-md\\@to-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-lg\\@from-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-lg\\@to-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-xl\\@from-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-xl\\@to-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top\\@from-enormous{margin-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-top\\@to-enormous{margin-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-top-none\\@from-enormous{margin-top:0 !important}}@media(max-width: 1799px){.u-margin-top-none\\@to-enormous{margin-top:0 !important}}@media(min-width: 1800px){.u-margin-right-gutter\\@from-enormous{margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-right-gutter\\@to-enormous{margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-right-xs\\@from-enormous{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-xs\\@to-enormous{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-sm\\@from-enormous{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-sm\\@to-enormous{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-md\\@from-enormous{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-md\\@to-enormous{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-lg\\@from-enormous{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-lg\\@to-enormous{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-xl\\@from-enormous{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-xl\\@to-enormous{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right\\@from-enormous{margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-right\\@to-enormous{margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-right-none\\@from-enormous{margin-right:0 !important}}@media(max-width: 1799px){.u-margin-right-none\\@to-enormous{margin-right:0 !important}}@media(min-width: 1800px){.u-margin-bottom-gutter\\@from-enormous{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-bottom-gutter\\@to-enormous{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-bottom-xs\\@from-enormous{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-xs\\@to-enormous{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-sm\\@from-enormous{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-sm\\@to-enormous{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-md\\@from-enormous{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-md\\@to-enormous{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-lg\\@from-enormous{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-lg\\@to-enormous{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-xl\\@from-enormous{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-xl\\@to-enormous{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom\\@from-enormous{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-bottom\\@to-enormous{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-bottom-none\\@from-enormous{margin-bottom:0 !important}}@media(max-width: 1799px){.u-margin-bottom-none\\@to-enormous{margin-bottom:0 !important}}@media(min-width: 1800px){.u-margin-left-gutter\\@from-enormous{margin-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-left-gutter\\@to-enormous{margin-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-left-xs\\@from-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-xs\\@to-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-sm\\@from-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-sm\\@to-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-md\\@from-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-md\\@to-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-lg\\@from-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-lg\\@to-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-xl\\@from-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-xl\\@to-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left\\@from-enormous{margin-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-left\\@to-enormous{margin-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-left-none\\@from-enormous{margin-left:0 !important}}@media(max-width: 1799px){.u-margin-left-none\\@to-enormous{margin-left:0 !important}}@media(min-width: 1800px){.u-margin-x-gutter\\@from-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-x-gutter\\@to-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-x-xs\\@from-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-xs\\@to-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-sm\\@from-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-sm\\@to-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-md\\@from-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-md\\@to-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-lg\\@from-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-lg\\@to-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-xl\\@from-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-xl\\@to-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x\\@from-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-x\\@to-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-x-none\\@from-enormous{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1799px){.u-margin-x-none\\@to-enormous{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1800px){.u-margin-y-gutter\\@from-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-y-gutter\\@to-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-y-xs\\@from-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-xs\\@to-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-sm\\@from-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-sm\\@to-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-md\\@from-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-md\\@to-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-lg\\@from-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-lg\\@to-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-xl\\@from-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-xl\\@to-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y\\@from-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-y\\@to-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-y-none\\@from-enormous{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1799px){.u-margin-y-none\\@to-enormous{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 2000px){.u-padding-gutter\\@from-gigantic{padding:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-gutter\\@to-gigantic{padding:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-xs\\@from-gigantic{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-xs\\@to-gigantic{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-sm\\@from-gigantic{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-sm\\@to-gigantic{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-md\\@from-gigantic{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-md\\@to-gigantic{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-lg\\@from-gigantic{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-lg\\@to-gigantic{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-xl\\@from-gigantic{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-xl\\@to-gigantic{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding\\@from-gigantic{padding:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding\\@to-gigantic{padding:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-none\\@from-gigantic{padding:0 !important}}@media(max-width: 1999px){.u-padding-none\\@to-gigantic{padding:0 !important}}@media(min-width: 2000px){.u-padding-top-gutter\\@from-gigantic{padding-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-top-gutter\\@to-gigantic{padding-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-top-xs\\@from-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-xs\\@to-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-sm\\@from-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-sm\\@to-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-md\\@from-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-md\\@to-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-lg\\@from-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-lg\\@to-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-xl\\@from-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-xl\\@to-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top\\@from-gigantic{padding-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-top\\@to-gigantic{padding-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-top-none\\@from-gigantic{padding-top:0 !important}}@media(max-width: 1999px){.u-padding-top-none\\@to-gigantic{padding-top:0 !important}}@media(min-width: 2000px){.u-padding-right-gutter\\@from-gigantic{padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-right-gutter\\@to-gigantic{padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-right-xs\\@from-gigantic{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-xs\\@to-gigantic{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-sm\\@from-gigantic{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-sm\\@to-gigantic{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-md\\@from-gigantic{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-md\\@to-gigantic{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-lg\\@from-gigantic{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-lg\\@to-gigantic{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-xl\\@from-gigantic{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-xl\\@to-gigantic{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right\\@from-gigantic{padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-right\\@to-gigantic{padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-right-none\\@from-gigantic{padding-right:0 !important}}@media(max-width: 1999px){.u-padding-right-none\\@to-gigantic{padding-right:0 !important}}@media(min-width: 2000px){.u-padding-bottom-gutter\\@from-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-bottom-gutter\\@to-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-bottom-xs\\@from-gigantic{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-xs\\@to-gigantic{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-sm\\@from-gigantic{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-sm\\@to-gigantic{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-md\\@from-gigantic{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-md\\@to-gigantic{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-lg\\@from-gigantic{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-lg\\@to-gigantic{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-xl\\@from-gigantic{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-xl\\@to-gigantic{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom\\@from-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-bottom\\@to-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-bottom-none\\@from-gigantic{padding-bottom:0 !important}}@media(max-width: 1999px){.u-padding-bottom-none\\@to-gigantic{padding-bottom:0 !important}}@media(min-width: 2000px){.u-padding-left-gutter\\@from-gigantic{padding-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-left-gutter\\@to-gigantic{padding-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-left-xs\\@from-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-xs\\@to-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-sm\\@from-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-sm\\@to-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-md\\@from-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-md\\@to-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-lg\\@from-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-lg\\@to-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-xl\\@from-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-xl\\@to-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left\\@from-gigantic{padding-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-left\\@to-gigantic{padding-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-left-none\\@from-gigantic{padding-left:0 !important}}@media(max-width: 1999px){.u-padding-left-none\\@to-gigantic{padding-left:0 !important}}@media(min-width: 2000px){.u-padding-x-gutter\\@from-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-x-gutter\\@to-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-x-xs\\@from-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-xs\\@to-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-sm\\@from-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-sm\\@to-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-md\\@from-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-md\\@to-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-lg\\@from-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-lg\\@to-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-xl\\@from-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-xl\\@to-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x\\@from-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-x\\@to-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-x-none\\@from-gigantic{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1999px){.u-padding-x-none\\@to-gigantic{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 2000px){.u-padding-y-gutter\\@from-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-y-gutter\\@to-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-y-xs\\@from-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-xs\\@to-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-sm\\@from-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-sm\\@to-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-md\\@from-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-md\\@to-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-lg\\@from-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-lg\\@to-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-xl\\@from-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-xl\\@to-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y\\@from-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-y\\@to-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-y-none\\@from-gigantic{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1999px){.u-padding-y-none\\@to-gigantic{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 2000px){.u-margin-gutter\\@from-gigantic{margin:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-gutter\\@to-gigantic{margin:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-xs\\@from-gigantic{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-xs\\@to-gigantic{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-sm\\@from-gigantic{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-sm\\@to-gigantic{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-md\\@from-gigantic{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-md\\@to-gigantic{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-lg\\@from-gigantic{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-lg\\@to-gigantic{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-xl\\@from-gigantic{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-xl\\@to-gigantic{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin\\@from-gigantic{margin:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin\\@to-gigantic{margin:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-none\\@from-gigantic{margin:0 !important}}@media(max-width: 1999px){.u-margin-none\\@to-gigantic{margin:0 !important}}@media(min-width: 2000px){.u-margin-top-gutter\\@from-gigantic{margin-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-top-gutter\\@to-gigantic{margin-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-top-xs\\@from-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-xs\\@to-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-sm\\@from-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-sm\\@to-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-md\\@from-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-md\\@to-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-lg\\@from-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-lg\\@to-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-xl\\@from-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-xl\\@to-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top\\@from-gigantic{margin-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-top\\@to-gigantic{margin-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-top-none\\@from-gigantic{margin-top:0 !important}}@media(max-width: 1999px){.u-margin-top-none\\@to-gigantic{margin-top:0 !important}}@media(min-width: 2000px){.u-margin-right-gutter\\@from-gigantic{margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-right-gutter\\@to-gigantic{margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-right-xs\\@from-gigantic{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-xs\\@to-gigantic{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-sm\\@from-gigantic{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-sm\\@to-gigantic{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-md\\@from-gigantic{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-md\\@to-gigantic{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-lg\\@from-gigantic{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-lg\\@to-gigantic{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-xl\\@from-gigantic{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-xl\\@to-gigantic{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right\\@from-gigantic{margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-right\\@to-gigantic{margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-right-none\\@from-gigantic{margin-right:0 !important}}@media(max-width: 1999px){.u-margin-right-none\\@to-gigantic{margin-right:0 !important}}@media(min-width: 2000px){.u-margin-bottom-gutter\\@from-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-bottom-gutter\\@to-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-bottom-xs\\@from-gigantic{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-xs\\@to-gigantic{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-sm\\@from-gigantic{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-sm\\@to-gigantic{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-md\\@from-gigantic{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-md\\@to-gigantic{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-lg\\@from-gigantic{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-lg\\@to-gigantic{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-xl\\@from-gigantic{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-xl\\@to-gigantic{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom\\@from-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-bottom\\@to-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-bottom-none\\@from-gigantic{margin-bottom:0 !important}}@media(max-width: 1999px){.u-margin-bottom-none\\@to-gigantic{margin-bottom:0 !important}}@media(min-width: 2000px){.u-margin-left-gutter\\@from-gigantic{margin-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-left-gutter\\@to-gigantic{margin-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-left-xs\\@from-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-xs\\@to-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-sm\\@from-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-sm\\@to-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-md\\@from-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-md\\@to-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-lg\\@from-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-lg\\@to-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-xl\\@from-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-xl\\@to-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left\\@from-gigantic{margin-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-left\\@to-gigantic{margin-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-left-none\\@from-gigantic{margin-left:0 !important}}@media(max-width: 1999px){.u-margin-left-none\\@to-gigantic{margin-left:0 !important}}@media(min-width: 2000px){.u-margin-x-gutter\\@from-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-x-gutter\\@to-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-x-xs\\@from-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-xs\\@to-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-sm\\@from-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-sm\\@to-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-md\\@from-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-md\\@to-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-lg\\@from-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-lg\\@to-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-xl\\@from-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-xl\\@to-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x\\@from-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-x\\@to-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-x-none\\@from-gigantic{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1999px){.u-margin-x-none\\@to-gigantic{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 2000px){.u-margin-y-gutter\\@from-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-y-gutter\\@to-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-y-xs\\@from-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-xs\\@to-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-sm\\@from-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-sm\\@to-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-md\\@from-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-md\\@to-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-lg\\@from-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-lg\\@to-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-xl\\@from-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-xl\\@to-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y\\@from-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-y\\@to-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-y-none\\@from-gigantic{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1999px){.u-margin-y-none\\@to-gigantic{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 2400px){.u-padding-gutter\\@from-colossal{padding:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-gutter\\@to-colossal{padding:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-xs\\@from-colossal{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-xs\\@to-colossal{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-sm\\@from-colossal{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-sm\\@to-colossal{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-md\\@from-colossal{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-md\\@to-colossal{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-lg\\@from-colossal{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-lg\\@to-colossal{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-xl\\@from-colossal{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-xl\\@to-colossal{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding\\@from-colossal{padding:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding\\@to-colossal{padding:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-none\\@from-colossal{padding:0 !important}}@media(max-width: 2399px){.u-padding-none\\@to-colossal{padding:0 !important}}@media(min-width: 2400px){.u-padding-top-gutter\\@from-colossal{padding-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-top-gutter\\@to-colossal{padding-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-top-xs\\@from-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-xs\\@to-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-sm\\@from-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-sm\\@to-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-md\\@from-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-md\\@to-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-lg\\@from-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-lg\\@to-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-xl\\@from-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-xl\\@to-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top\\@from-colossal{padding-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-top\\@to-colossal{padding-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-top-none\\@from-colossal{padding-top:0 !important}}@media(max-width: 2399px){.u-padding-top-none\\@to-colossal{padding-top:0 !important}}@media(min-width: 2400px){.u-padding-right-gutter\\@from-colossal{padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-right-gutter\\@to-colossal{padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-right-xs\\@from-colossal{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-xs\\@to-colossal{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-sm\\@from-colossal{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-sm\\@to-colossal{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-md\\@from-colossal{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-md\\@to-colossal{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-lg\\@from-colossal{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-lg\\@to-colossal{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-xl\\@from-colossal{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-xl\\@to-colossal{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right\\@from-colossal{padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-right\\@to-colossal{padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-right-none\\@from-colossal{padding-right:0 !important}}@media(max-width: 2399px){.u-padding-right-none\\@to-colossal{padding-right:0 !important}}@media(min-width: 2400px){.u-padding-bottom-gutter\\@from-colossal{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-bottom-gutter\\@to-colossal{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-bottom-xs\\@from-colossal{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-xs\\@to-colossal{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-sm\\@from-colossal{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-sm\\@to-colossal{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-md\\@from-colossal{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-md\\@to-colossal{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-lg\\@from-colossal{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-lg\\@to-colossal{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-xl\\@from-colossal{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-xl\\@to-colossal{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom\\@from-colossal{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-bottom\\@to-colossal{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-bottom-none\\@from-colossal{padding-bottom:0 !important}}@media(max-width: 2399px){.u-padding-bottom-none\\@to-colossal{padding-bottom:0 !important}}@media(min-width: 2400px){.u-padding-left-gutter\\@from-colossal{padding-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-left-gutter\\@to-colossal{padding-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-left-xs\\@from-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-xs\\@to-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-sm\\@from-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-sm\\@to-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-md\\@from-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-md\\@to-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-lg\\@from-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-lg\\@to-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-xl\\@from-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-xl\\@to-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left\\@from-colossal{padding-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-left\\@to-colossal{padding-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-left-none\\@from-colossal{padding-left:0 !important}}@media(max-width: 2399px){.u-padding-left-none\\@to-colossal{padding-left:0 !important}}@media(min-width: 2400px){.u-padding-x-gutter\\@from-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-x-gutter\\@to-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-x-xs\\@from-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-xs\\@to-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-sm\\@from-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-sm\\@to-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-md\\@from-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-md\\@to-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-lg\\@from-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-lg\\@to-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-xl\\@from-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-xl\\@to-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x\\@from-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-x\\@to-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-x-none\\@from-colossal{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 2399px){.u-padding-x-none\\@to-colossal{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 2400px){.u-padding-y-gutter\\@from-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-y-gutter\\@to-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-y-xs\\@from-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-xs\\@to-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-sm\\@from-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-sm\\@to-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-md\\@from-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-md\\@to-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-lg\\@from-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-lg\\@to-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-xl\\@from-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-xl\\@to-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y\\@from-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-y\\@to-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-y-none\\@from-colossal{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 2399px){.u-padding-y-none\\@to-colossal{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 2400px){.u-margin-gutter\\@from-colossal{margin:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-gutter\\@to-colossal{margin:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-xs\\@from-colossal{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-xs\\@to-colossal{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-sm\\@from-colossal{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-sm\\@to-colossal{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-md\\@from-colossal{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-md\\@to-colossal{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-lg\\@from-colossal{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-lg\\@to-colossal{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-xl\\@from-colossal{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-xl\\@to-colossal{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin\\@from-colossal{margin:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin\\@to-colossal{margin:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-none\\@from-colossal{margin:0 !important}}@media(max-width: 2399px){.u-margin-none\\@to-colossal{margin:0 !important}}@media(min-width: 2400px){.u-margin-top-gutter\\@from-colossal{margin-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-top-gutter\\@to-colossal{margin-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-top-xs\\@from-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-xs\\@to-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-sm\\@from-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-sm\\@to-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-md\\@from-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-md\\@to-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-lg\\@from-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-lg\\@to-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-xl\\@from-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-xl\\@to-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top\\@from-colossal{margin-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-top\\@to-colossal{margin-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-top-none\\@from-colossal{margin-top:0 !important}}@media(max-width: 2399px){.u-margin-top-none\\@to-colossal{margin-top:0 !important}}@media(min-width: 2400px){.u-margin-right-gutter\\@from-colossal{margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-right-gutter\\@to-colossal{margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-right-xs\\@from-colossal{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-xs\\@to-colossal{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-sm\\@from-colossal{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-sm\\@to-colossal{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-md\\@from-colossal{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-md\\@to-colossal{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-lg\\@from-colossal{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-lg\\@to-colossal{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-xl\\@from-colossal{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-xl\\@to-colossal{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right\\@from-colossal{margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-right\\@to-colossal{margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-right-none\\@from-colossal{margin-right:0 !important}}@media(max-width: 2399px){.u-margin-right-none\\@to-colossal{margin-right:0 !important}}@media(min-width: 2400px){.u-margin-bottom-gutter\\@from-colossal{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-bottom-gutter\\@to-colossal{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-bottom-xs\\@from-colossal{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-xs\\@to-colossal{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-sm\\@from-colossal{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-sm\\@to-colossal{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-md\\@from-colossal{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-md\\@to-colossal{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-lg\\@from-colossal{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-lg\\@to-colossal{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-xl\\@from-colossal{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-xl\\@to-colossal{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom\\@from-colossal{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-bottom\\@to-colossal{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-bottom-none\\@from-colossal{margin-bottom:0 !important}}@media(max-width: 2399px){.u-margin-bottom-none\\@to-colossal{margin-bottom:0 !important}}@media(min-width: 2400px){.u-margin-left-gutter\\@from-colossal{margin-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-left-gutter\\@to-colossal{margin-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-left-xs\\@from-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-xs\\@to-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-sm\\@from-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-sm\\@to-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-md\\@from-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-md\\@to-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-lg\\@from-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-lg\\@to-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-xl\\@from-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-xl\\@to-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left\\@from-colossal{margin-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-left\\@to-colossal{margin-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-left-none\\@from-colossal{margin-left:0 !important}}@media(max-width: 2399px){.u-margin-left-none\\@to-colossal{margin-left:0 !important}}@media(min-width: 2400px){.u-margin-x-gutter\\@from-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-x-gutter\\@to-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-x-xs\\@from-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-xs\\@to-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-sm\\@from-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-sm\\@to-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-md\\@from-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-md\\@to-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-lg\\@from-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-lg\\@to-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-xl\\@from-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-xl\\@to-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x\\@from-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-x\\@to-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-x-none\\@from-colossal{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 2399px){.u-margin-x-none\\@to-colossal{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 2400px){.u-margin-y-gutter\\@from-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-y-gutter\\@to-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-y-xs\\@from-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-xs\\@to-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-sm\\@from-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-sm\\@to-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-md\\@from-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-md\\@to-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-lg\\@from-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-lg\\@to-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-xl\\@from-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-xl\\@to-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y\\@from-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-y\\@to-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-y-none\\@from-colossal{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 2399px){.u-margin-y-none\\@to-colossal{margin-top:0 !important;margin-bottom:0 !important}}"]} \ No newline at end of file +{"version":3,"sources":["main.css"],"names":[],"mappings":"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EACjB;AACF;AACA;EACE;IACE,eAAe;EACjB;AACF;AACA;EACE;IACE,eAAe;EACjB;AACF;AACA;EACE;IACE,eAAe;EACjB;AACF;AACA;EACE;IACE,eAAe;EACjB;AACF;AACA;EACE;IACE,eAAe;EACjB;AACF;AACA;EACE,YAAY;AACd;;AAEA;EACE,uBAAuB;EACvB,YAAY;EACZ,iBAAiB;AACnB;;AAJA;EACE,uBAAuB;EACvB,YAAY;EACZ,iBAAiB;AACnB;;AAEA;EACE,cAAc;AAChB;AACA;EACE,cAAc;AAChB;;AAEA;EACE,kBAAkB;EAClB,iBAAiB;EACjB,gCAAgC;EAChC,iCAAiC;AACnC;;AAEA;EACE,kBAAkB;EAClB,cAAc;EACd,gBAAgB;AAClB;AACA;EACE,cAAc;EACd,oBAAoB;EACpB,WAAW;EACX,WAAW;AACb;;AAEA;;;;;EAKE,kBAAkB;EAClB,MAAM;EACN,SAAS;EACT,OAAO;EACP,WAAW;AACb;;AAEA;EACE,qBAAqB;EACrB,sBAAsB;AACxB;AACA;EACE,yEAAyE;EACzE,cAAc;EACd,wBAAwB;EACxB,0BAA0B;EAC1B,kBAAkB;AACpB;;AAEA;;;;;;;;;;;;;EAaE;AACF;EACE,aAAa;EACb,WAAW;AACb;AACA;EACE,SAAS;EACT,UAAU;EACV,gBAAgB;AAClB;AACA;EACE,uDAAuD;AACzD;AACA;EACE,sCAAsC;AACxC;AACA;EACE,qCAAqC;AACvC;AACA;EACE;IACE,sCAAsC;EACxC;AACF;AACA;EACE,uBAAuB;EACvB,mCAA8B;OAA9B,8BAA8B;AAChC;AACA;EACE,YAAY;AACd;AACA;EACE,kBAAkB;AACpB;AACA;EACE,kBAAkB;AACpB;AACA;EACE,gBAAgB;AAClB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,mBAAmB;EACnB,qBAAqB;AACvB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,mBAAmB;AACrB;AACA;EACE,oBAAoB;EACpB,sBAAsB;AACxB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,oBAAoB;AACtB;AACA;EACE,kBAAkB;AACpB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,qBAAqB;EACrB,uBAAuB;AACzB;AACA;EACE,uBAAuB;AACzB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,sBAAsB;EACtB,wBAAwB;AAC1B;AACA;EACE,2BAA2B;EAC3B,6BAA6B;AAC/B;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,2BAA2B;AAC7B;AACA;EACE,8BAA8B;EAC9B,4BAA4B;AAC9B;AACA;EACE,8BAA8B;AAChC;AACA;EACE,4BAA4B;AAC9B;AACA;EACE,6BAA6B;EAC7B,2BAA2B;AAC7B;AACA;EACE,6BAA6B;AAC/B;AACA;EACE,2BAA2B;AAC7B;;AAEA;EACE,qCAAqC;EACrC,kCAAkC;AACpC;AACA;EACE,eAAe;AACjB;;AAEA;EACE,uBAAuB;AACzB;AACA;EACE,8BAA8B;AAChC;AACA;EACE,8BAA8B;AAChC;AACA;EACE,8BAA8B;AAChC;AACA;EACE,8BAA8B;AAChC;AACA;EACE,8BAA8B;AAChC;AACA;EACE,8BAA8B;AAChC;;AAEA;EACE,0BAA0B;EAC1B,2BAA2B;AAC7B;AACA;EACE,0BAA0B;AAC5B;;AAEA;EACE,kBAAkB;EAClB,uBAAuB;AACzB;;AAEA;EACE,cAAc;EACd,uBAAuB;AACzB;;AAEA;EACE,iBAAiB;EACjB,2BAA2B;EAC3B,uBAAuB;AACzB;AACA;EACE,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,WAAW;AACb;AAFA;EACE,WAAW;AACb;;AAEA;EACE,kBAAkB;EAClB,qBAAqB;EACrB,sBAAsB;EACtB,gBAAgB;EAChB,qBAAqB;EACrB,eAAe;AACjB;AACA;EACE,kBAAkB;EAClB,QAAQ;EACR,OAAO;EACP,qBAAqB;EACrB,sBAAsB;EACtB,UAAU;EACV,eAAe;EACf,gBAAgB;EAChB,WAAW;AACb;AACA;EACE,uBAAuB;EACvB,2BAA2B;AAC7B;AACA;EACE,yBAAyB;EACzB,6BAA6B;EAC7B,6cAA6c;EAC7c,2BAA2B;EAC3B,wBAAwB;EACxB,4BAA4B;EAC5B,UAAU;AACZ;AACA;EACE,sBAAsB;AACxB;AACA;EACE,qBAAqB;AACvB;AACA;EACE,UAAU;AACZ;;AAEA;EACE,kBAAkB;EAClB,QAAQ;EACR,UAAU;AACZ;;AAEA;EACE,kBAAkB;AACpB;AACA;EACE,4ZAA4Z;EAC5Z,yBAAyB;AAC3B;;AAEA;EACE,kBAAkB;EAClB,eAAe;AACjB;AACA;EACE,kBAAkB;EAClB,MAAM;EACN,QAAQ;EACR,SAAS;EACT,UAAU;EACV,aAAa;EACb,mcAAmc;EACnc,2BAA2B;EAC3B,uBAAuB;EACvB,4BAA4B;EAC5B,WAAW;EACX,oBAAoB;AACtB;;AAEA;EACE,kBAAkB;EAClB,UAAU;EACV,qBAAqB;EACrB,eAAe;AACjB;;AAEA;EACE,mBAAmB;AACrB;;AAEA,sBAAsB;AACtB;EACE,mBAAmB;AACrB;;AAEA;EACE,mBAAmB;AACrB;;AAEA;EACE,sBAAsB;AACxB;;AAEA,qBAAqB;;AA76BrB;;EAAA;IAAA;EA66BsB;;EA76BtB;IAAA;EA66BsB;;EA76BtB;IAAA;EA66BsB;;EA76BtB;IAAA;EA66BsB;;EA76BtB;IAAA;EA66BsB;;EA76BtB;IAAA;EA66BsB;;EA76BtB;IAAA;EA66BsB;AAAA","file":"main.css","sourcesContent":["@tailwind base;\n@tailwind components;\n@tailwind utilities;\n:root {\n --grid-columns: 4;\n --grid-gutter: 0.625rem;\n --grid-margin: 0.625rem;\n --container-width: calc(100% - 2 * var(--grid-margin));\n --font-size-h1: clamp(36px, 0.0514285714 * calc(100 * var(--vw, 1vw)), 72px);\n --font-size-h2: 1.75rem;\n --font-size-h3: 1.5rem;\n --font-size-h4: 1.25rem;\n --font-size-h5: 1.125rem;\n --font-size-h6: 1rem;\n}\n@media (min-width: 700px) {\n :root {\n --grid-columns: 12;\n --grid-gutter: 1rem;\n --grid-margin: 1.25rem;\n }\n}\n\n/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */\n/* Document\n ========================================================================== */\n/**\n * 1. Correct the line height in all browsers.\n * 2. Prevent adjustments of font size after orientation changes in iOS.\n */\nhtml {\n line-height: 1.15; /* 1 */\n -webkit-text-size-adjust: 100%; /* 2 */\n}\n\n/* Sections\n ========================================================================== */\n/**\n * Remove the margin in all browsers.\n */\nbody {\n margin: 0;\n}\n\n/**\n * Render the `main` element consistently in IE.\n */\nmain {\n display: block;\n}\n\n/**\n * Correct the font size and margin on `h1` elements within `section` and\n * `article` contexts in Chrome, Firefox, and Safari.\n */\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n/* Grouping content\n ========================================================================== */\n/**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\nhr {\n box-sizing: content-box; /* 1 */\n height: 0; /* 1 */\n overflow: visible; /* 2 */\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\npre {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/* Text-level semantics\n ========================================================================== */\n/**\n * Remove the gray background on active links in IE 10.\n */\na {\n background-color: transparent;\n}\n\n/**\n * 1. Remove the bottom border in Chrome 57-\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\nabbr[title] {\n border-bottom: none; /* 1 */\n text-decoration: underline; /* 2 */\n text-decoration: underline dotted; /* 2 */\n}\n\n/**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\nb,\nstrong {\n font-weight: bolder;\n}\n\n/**\n * 1. Correct the inheritance and scaling of font size in all browsers.\n * 2. Correct the odd `em` font sizing in all browsers.\n */\ncode,\nkbd,\nsamp {\n font-family: monospace, monospace; /* 1 */\n font-size: 1em; /* 2 */\n}\n\n/**\n * Add the correct font size in all browsers.\n */\nsmall {\n font-size: 80%;\n}\n\n/**\n * Prevent `sub` and `sup` elements from affecting the line height in\n * all browsers.\n */\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\n/* Embedded content\n ========================================================================== */\n/**\n * Remove the border on images inside links in IE 10.\n */\nimg {\n border-style: none;\n}\n\n/* Forms\n ========================================================================== */\n/**\n * 1. Change the font styles in all browsers.\n * 2. Remove the margin in Firefox and Safari.\n */\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n font-family: inherit; /* 1 */\n font-size: 100%; /* 1 */\n line-height: 1.15; /* 1 */\n margin: 0; /* 2 */\n}\n\n/**\n * Show the overflow in IE.\n * 1. Show the overflow in Edge.\n */\nbutton,\ninput { /* 1 */\n overflow: visible;\n}\n\n/**\n * Remove the inheritance of text transform in Edge, Firefox, and IE.\n * 1. Remove the inheritance of text transform in Firefox.\n */\nbutton,\nselect { /* 1 */\n text-transform: none;\n}\n\n/**\n * Correct the inability to style clickable types in iOS and Safari.\n */\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\n\n/**\n * Remove the inner border and padding in Firefox.\n */\nbutton::-moz-focus-inner,\n[type=button]::-moz-focus-inner,\n[type=reset]::-moz-focus-inner,\n[type=submit]::-moz-focus-inner {\n border-style: none;\n padding: 0;\n}\n\n/**\n * Restore the focus styles unset by the previous rule.\n */\nbutton:-moz-focusring,\n[type=button]:-moz-focusring,\n[type=reset]:-moz-focusring,\n[type=submit]:-moz-focusring {\n outline: 1px dotted ButtonText;\n}\n\n/**\n * Correct the padding in Firefox.\n */\nfieldset {\n padding: 0.35em 0.75em 0.625em;\n}\n\n/**\n * 1. Correct the text wrapping in Edge and IE.\n * 2. Correct the color inheritance from `fieldset` elements in IE.\n * 3. Remove the padding so developers are not caught out when they zero out\n * `fieldset` elements in all browsers.\n */\nlegend {\n box-sizing: border-box; /* 1 */\n color: inherit; /* 2 */\n display: table; /* 1 */\n max-width: 100%; /* 1 */\n padding: 0; /* 3 */\n white-space: normal; /* 1 */\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Remove the default vertical scrollbar in IE 10+.\n */\ntextarea {\n overflow: auto;\n}\n\n/**\n * 1. Add the correct box sizing in IE 10.\n * 2. Remove the padding in IE 10.\n */\n[type=checkbox],\n[type=radio] {\n box-sizing: border-box; /* 1 */\n padding: 0; /* 2 */\n}\n\n/**\n * Correct the cursor style of increment and decrement buttons in Chrome.\n */\n[type=number]::-webkit-inner-spin-button,\n[type=number]::-webkit-outer-spin-button {\n height: auto;\n}\n\n/**\n * 1. Correct the odd appearance in Chrome and Safari.\n * 2. Correct the outline style in Safari.\n */\n[type=search] {\n -webkit-appearance: textfield; /* 1 */\n outline-offset: -2px; /* 2 */\n}\n\n/**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n[type=search]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n/**\n * 1. Correct the inability to style clickable types in iOS and Safari.\n * 2. Change font properties to `inherit` in Safari.\n */\n::-webkit-file-upload-button {\n -webkit-appearance: button; /* 1 */\n font: inherit; /* 2 */\n}\n\n/* Interactive\n ========================================================================== */\n/*\n * Add the correct display in Edge, IE 10+, and Firefox.\n */\ndetails {\n display: block;\n}\n\n/*\n * Add the correct display in all browsers.\n */\nsummary {\n display: list-item;\n}\n\n/* Misc\n ========================================================================== */\n/**\n * Add the correct display in IE 10+.\n */\ntemplate {\n display: none;\n}\n\n/**\n * Add the correct display in IE 10.\n */\n[hidden] {\n display: none;\n}\n\nhtml {\n box-sizing: border-box;\n}\n\ntemplate,\n[hidden] {\n display: none;\n}\n\n*,\n:before,\n:after {\n box-sizing: inherit;\n}\n\naddress {\n font-style: inherit;\n}\n\ndfn,\ncite,\nem,\ni {\n font-style: italic;\n}\n\nb,\nstrong {\n font-weight: 700;\n}\n\na {\n text-decoration: none;\n}\na svg {\n pointer-events: none;\n}\n\nul,\nol {\n margin: 0;\n padding: 0;\n list-style: none;\n}\n\np,\nfigure {\n margin: 0;\n padding: 0;\n}\n\nh1, h2, h3, h4, h5, h6 {\n margin: 0;\n}\n\na, area, button, input, label, select, textarea, [tabindex] {\n -ms-touch-action: manipulation;\n touch-action: manipulation;\n}\n\n[hreflang] > abbr[title] {\n text-decoration: none;\n}\n\ntable {\n border-spacing: 0;\n border-collapse: collapse;\n}\n\nhr {\n display: block;\n margin: 1em 0;\n padding: 0;\n height: 1px;\n border: 0;\n border-top: 1px solid #CCCCCC;\n}\n\naudio,\ncanvas,\niframe,\nimg,\nsvg,\nvideo {\n vertical-align: middle;\n}\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\nimg,\nsvg {\n max-width: 100%;\n height: auto;\n}\nimg[width], img[height],\nsvg[width],\nsvg[height] {\n max-width: none;\n}\n\nimg {\n font-style: italic;\n}\n\nsvg {\n fill: currentColor;\n}\n\ninput,\nselect,\ntextarea {\n display: block;\n margin: 0;\n padding: 0;\n width: 100%;\n outline: 0;\n border: 0;\n border-radius: 0;\n background: none transparent;\n color: inherit;\n font: inherit;\n line-height: normal;\n appearance: none;\n}\n\nselect {\n text-transform: none;\n}\nselect::-ms-expand {\n display: none;\n}\nselect::-ms-value {\n background: none;\n color: inherit;\n}\n\ntextarea {\n overflow: auto;\n resize: vertical;\n}\n\nbutton,\n.c-button {\n display: inline-block;\n overflow: visible;\n margin: 0;\n padding: 0;\n outline: 0;\n border: 0;\n background: none transparent;\n color: inherit;\n vertical-align: middle;\n text-align: center;\n text-decoration: none;\n text-transform: none;\n font: inherit;\n line-height: normal;\n cursor: pointer;\n user-select: none;\n}\nbutton:focus, button:hover,\n.c-button:focus,\n.c-button:hover {\n text-decoration: none;\n}\n\nhtml.lenis {\n height: auto;\n}\n\n.lenis.lenis-smooth {\n scroll-behavior: auto;\n}\n\n.lenis.lenis-smooth [data-lenis-prevent] {\n overscroll-behavior: contain;\n}\n\n.lenis.lenis-stopped {\n overflow: hidden;\n}\n\n.lenis.lenis-scrolling iframe {\n pointer-events: none;\n}\n\n@font-face {\n font-display: swap;\n font-family: \"Source Sans\";\n src: url(\"../fonts/SourceSans3-Bold.woff2\") format(\"woff2\"), url(\"../fonts/SourceSans3-Bold.woff\") format(\"woff\");\n font-weight: 700;\n font-style: normal;\n}\n@font-face {\n font-display: swap;\n font-family: \"Source Sans\";\n src: url(\"../fonts/SourceSans3-BoldIt.woff2\") format(\"woff2\"), url(\"../fonts/SourceSans3-BoldIt.woff\") format(\"woff\");\n font-weight: 700;\n font-style: italic;\n}\n@font-face {\n font-display: swap;\n font-family: \"Source Sans\";\n src: url(\"../fonts/SourceSans3-Regular.woff2\") format(\"woff2\"), url(\"../fonts/SourceSans3-Regular.woff\") format(\"woff\");\n font-weight: 400;\n font-style: normal;\n}\n@font-face {\n font-display: swap;\n font-family: \"Source Sans\";\n src: url(\"../fonts/SourceSans3-RegularIt.woff2\") format(\"woff2\"), url(\"../fonts/SourceSans3-RegularIt.woff\") format(\"woff\");\n font-weight: 400;\n font-style: italic;\n}\nhtml {\n min-height: 100%;\n line-height: 1.5;\n font-family: \"Source Sans\", -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;\n color: black;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n@media (max-width: 699px) {\n html {\n font-size: 14px;\n }\n}\n@media (min-width: 700px) and (max-width: 999px) {\n html {\n font-size: 14px;\n }\n}\n@media (min-width: 1000px) and (max-width: 1199px) {\n html {\n font-size: 15px;\n }\n}\n@media (min-width: 1200px) and (max-width: 1599px) {\n html {\n font-size: 16px;\n }\n}\n@media (min-width: 1600px) and (max-width: 1999px) {\n html {\n font-size: 17px;\n }\n}\n@media (min-width: 2000px) and (max-width: 2399px) {\n html {\n font-size: 18px;\n }\n}\n@media (min-width: 2400px) {\n html {\n font-size: 20px;\n }\n}\nhtml.is-loading {\n cursor: wait;\n}\n\n::selection {\n background-color: white;\n color: black;\n text-shadow: none;\n}\n\na {\n color: #3297fd;\n}\na:focus, a:hover {\n color: #027dfa;\n}\n\n.o-container {\n margin-right: auto;\n margin-left: auto;\n padding-left: var(--grid-margin);\n padding-right: var(--grid-margin);\n}\n\n.o-ratio {\n position: relative;\n display: block;\n overflow: hidden;\n}\n.o-ratio:before {\n display: block;\n padding-bottom: 100%;\n width: 100%;\n content: \"\";\n}\n\n.o-ratio_content,\n.o-ratio > img,\n.o-ratio > iframe,\n.o-ratio > embed,\n.o-ratio > object {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n}\n\n.o-icon {\n display: inline-block;\n vertical-align: middle;\n}\n.o-icon svg {\n --icon-height: calc(var(--icon-width) * math.div(1, (var(--icon-ratio))));\n display: block;\n width: var(--icon-width);\n height: var(--icon-height);\n fill: currentColor;\n}\n\n/**\n * Usage:\n *\n * ```html\n *
\n *
\n *

Hello

\n *
\n *
\n *

Hello

\n *
\n *
\n * ```\n */\n.o-grid {\n display: grid;\n width: 100%;\n}\n.o-grid:is(ul, ol) {\n margin: 0;\n padding: 0;\n list-style: none;\n}\n.o-grid.-cols {\n grid-template-columns: repeat(var(--grid-columns), 1fr);\n}\n.o-grid.-col-12 {\n grid-template-columns: repeat(12, 1fr);\n}\n.o-grid.-col-4 {\n grid-template-columns: repeat(4, 1fr);\n}\n@media (min-width: 1000px) {\n .o-grid.-col-12\\@from-medium {\n grid-template-columns: repeat(12, 1fr);\n }\n}\n.o-grid.-gutters {\n gap: var(--grid-gutter);\n column-gap: var(--grid-gutter);\n}\n.o-grid.-full-height {\n height: 100%;\n}\n.o-grid.-top-items {\n align-items: start;\n}\n.o-grid.-right-items {\n justify-items: end;\n}\n.o-grid.-bottom-items {\n align-items: end;\n}\n.o-grid.-left-items {\n justify-items: start;\n}\n.o-grid.-center-items {\n align-items: center;\n justify-items: center;\n}\n.o-grid.-center-items-x {\n justify-items: center;\n}\n.o-grid.-center-items-y {\n align-items: center;\n}\n.o-grid.-stretch-items {\n align-items: stretch;\n justify-items: stretch;\n}\n.o-grid.-top-cells {\n align-content: start;\n}\n.o-grid.-right-cells {\n justify-content: end;\n}\n.o-grid.-bottom-cells {\n align-content: end;\n}\n.o-grid.-left-cells {\n justify-content: start;\n}\n.o-grid.-center-cells {\n align-content: center;\n justify-content: center;\n}\n.o-grid.-center-cells-x {\n justify-content: center;\n}\n.o-grid.-center-cells-y {\n align-content: center;\n}\n.o-grid.-stretch-cells {\n align-content: stretch;\n justify-content: stretch;\n}\n.o-grid.-space-around-cells {\n align-content: space-around;\n justify-content: space-around;\n}\n.o-grid.-space-around-cells-x {\n justify-content: space-around;\n}\n.o-grid.-space-around-cells-y {\n align-content: space-around;\n}\n.o-grid.-space-between-cells {\n justify-content: space-between;\n align-content: space-between;\n}\n.o-grid.-space-between-cells-x {\n justify-content: space-between;\n}\n.o-grid.-space-between-cells-y {\n align-content: space-between;\n}\n.o-grid.-space-evenly-cells {\n justify-content: space-evenly;\n align-content: space-evenly;\n}\n.o-grid.-space-evenly-cells-x {\n justify-content: space-evenly;\n}\n.o-grid.-space-evenly-cells-y {\n align-content: space-evenly;\n}\n\n.o-grid_item {\n grid-column-start: var(--gc-start, 1);\n grid-column-end: var(--gc-end, -1);\n}\n.o-grid_item.-align-end {\n align-self: end;\n}\n\n.c-heading {\n margin-bottom: 1.875rem;\n}\n.c-heading.-h1 {\n font-size: var(--font-size-h1);\n}\n.c-heading.-h2 {\n font-size: var(--font-size-h2);\n}\n.c-heading.-h3 {\n font-size: var(--font-size-h3);\n}\n.c-heading.-h4 {\n font-size: var(--font-size-h4);\n}\n.c-heading.-h5 {\n font-size: var(--font-size-h5);\n}\n.c-heading.-h6 {\n font-size: var(--font-size-h6);\n}\n\n.c-button {\n padding: 0.9375rem 1.25rem;\n background-color: lightgray;\n}\n.c-button:focus, .c-button:hover {\n background-color: darkgray;\n}\n\n.c-form_item {\n position: relative;\n margin-bottom: 1.875rem;\n}\n\n.c-form_label, .c-form_checkboxLabel, .c-form_radioLabel {\n display: block;\n margin-bottom: 0.625rem;\n}\n\n.c-form_input, .c-form_textarea, .c-form_select_input {\n padding: 0.625rem;\n border: 1px solid lightgray;\n background-color: white;\n}\n.c-form_input:hover, .c-form_textarea:hover, .c-form_select_input:hover {\n border-color: darkgray;\n}\n.c-form_input:focus, .c-form_textarea:focus, .c-form_select_input:focus {\n border-color: dimgray;\n}\n.c-form_input::placeholder, .c-form_textarea::placeholder, .c-form_select_input::placeholder {\n color: gray;\n}\n\n.c-form_checkboxLabel, .c-form_radioLabel {\n position: relative;\n display: inline-block;\n margin-right: 0.625rem;\n margin-bottom: 0;\n padding-left: 1.75rem;\n cursor: pointer;\n}\n.c-form_checkboxLabel::before, .c-form_radioLabel::before, .c-form_checkboxLabel::after, .c-form_radioLabel::after {\n position: absolute;\n top: 50%;\n left: 0;\n display: inline-block;\n margin-top: -0.5625rem;\n padding: 0;\n width: 1.125rem;\n height: 1.125rem;\n content: \"\";\n}\n.c-form_checkboxLabel::before, .c-form_radioLabel::before {\n background-color: white;\n border: 1px solid lightgray;\n}\n.c-form_checkboxLabel::after, .c-form_radioLabel::after {\n border-color: transparent;\n background-color: transparent;\n background-image: url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E\");\n background-position: center;\n background-size: 0.75rem;\n background-repeat: no-repeat;\n opacity: 0;\n}\n.c-form_checkboxLabel:hover::before, .c-form_radioLabel:hover::before {\n border-color: darkgray;\n}\n.c-form_checkbox:focus + .c-form_checkboxLabel::before, .c-form_radio:focus + .c-form_checkboxLabel::before, .c-form_checkbox:focus + .c-form_radioLabel::before, .c-form_radio:focus + .c-form_radioLabel::before {\n border-color: dimgray;\n}\n.c-form_checkbox:checked + .c-form_checkboxLabel::after, .c-form_radio:checked + .c-form_checkboxLabel::after, .c-form_checkbox:checked + .c-form_radioLabel::after, .c-form_radio:checked + .c-form_radioLabel::after {\n opacity: 1;\n}\n\n.c-form_checkbox, .c-form_radio {\n position: absolute;\n width: 0;\n opacity: 0;\n}\n\n.c-form_radioLabel::before, .c-form_radioLabel::after {\n border-radius: 50%;\n}\n.c-form_radioLabel::after {\n background-image: url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E\");\n background-size: 0.375rem;\n}\n\n.c-form_select {\n position: relative;\n cursor: pointer;\n}\n.c-form_select::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 2;\n width: 2.5rem;\n background-image: url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E\");\n background-position: center;\n background-size: 0.5rem;\n background-repeat: no-repeat;\n content: \"\";\n pointer-events: none;\n}\n\n.c-form_select_input {\n position: relative;\n z-index: 1;\n padding-right: 2.5rem;\n cursor: pointer;\n}\n\n.c-form_textarea {\n min-height: 12.5rem;\n}\n\n/* stylelint-disable */\n.u-2\\:1::before {\n padding-bottom: 50%;\n}\n\n.u-4\\:3::before {\n padding-bottom: 75%;\n}\n\n.u-16\\:9::before {\n padding-bottom: 56.25%;\n}\n\n/* stylelint-enable */"]} \ No newline at end of file diff --git a/www/grid.html b/www/grid.html index df378c2..dd00ff8 100644 --- a/www/grid.html +++ b/www/grid.html @@ -52,24 +52,24 @@

Hello

-
-
-

This grid has 4 columns and 12 columns from `medium` MQ

+
+
+

This grid has 4 columns and 12 columns from `medium` MQ

-
+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita provident distinctio deleniti eaque cumque doloremque aut quo dicta porro commodi, temporibus totam dolor autem tempore quasi ullam sed suscipit vero?

-
+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita provident distinctio deleniti eaque cumque doloremque aut quo dicta porro commodi, temporibus totam dolor autem tempore quasi ullam sed suscipit vero?

-
+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita provident distinctio deleniti eaque cumque doloremque aut quo dicta porro commodi, temporibus totam dolor autem tempore quasi ullam sed suscipit vero?

-
+

Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita provident distinctio deleniti eaque cumque doloremque aut quo dicta porro commodi, temporibus totam dolor autem tempore quasi ullam sed suscipit vero?

diff --git a/www/index.html b/www/index.html index 81ff948..049f3f3 100644 --- a/www/index.html +++ b/www/index.html @@ -57,8 +57,8 @@
-
-

Hello

+
+

Hello